-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "pokedex",
"version": "1.0.0",
"description": "pokedex",
"sideEffects": false,
"scripts": {
"clean": "shx rm -rf build",
"webpack": "webpack --config config/webpack.config.production.js",
"sass": "node-sass src/styles/index.scss build/index.css --output-style compressed",
"build": "npm run clean && npm run sass && npm run webpack",
"lint": "eslint src config --fix",
"dev": "webpack-cli serve --mode development --config config/webpack.config.dev.js",
"test": "export NODE_ENV=test && jest && npm run puppeteer",
"puppeteer": "node scripts/access.js",
"start": "serve -s build"
},
"repository": {
"type": "git",
"url": "https://github.com/priambudiLB/pokedex"
},
"author": "Bagas",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.3.16",
"@babel/core": "^7.12.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/runtime": "^7.14.0",
"@emotion/react": "^11.4.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"autoprefixer": "^10.0.2",
"babel-loader": "^8.2.0",
"babel-plugin-module-resolver": "^4.0.0",
"copy-webpack-plugin": "^6.3.0",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"file-loader": "^5.1.0",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"history": "^4.10.1",
"jest": "^24.9.0",
"node-sass": "^5.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-infinite-scroller": "^1.2.4",
"react-router-dom": "^5.2.0",
"sass-loader": "^10.0.5",
"serve": "^11.3.2",
"shx": "^0.3.3",
"style-loader": "^2.0.0"
},
"jest": {
"verbose": true,
"bail": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpe?g|png|gif|eot|otf|webp|svg|ttf|woff2?|mp[34]|webm|wav|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|s[ac]ss|styl)$": "<rootDir>/__mocks__/styleMock.js"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.15",
"@testing-library/react": "^11.2.6",
"babel-plugin-import": "^1.13.3",
"brotli-webpack-plugin": "^1.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.1.0",
"html-webpack-plugin": "^4.5.0",
"pptr-testing-library": "^0.6.4",
"puppeteer": "^2.1.1",
"terser-webpack-plugin": "^5.0.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.4.0",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^6.1.5"
}
}