-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.42 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
{
"name": "kari-shop-parcel",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --open",
"start:debug": "yarn start --devtool eval-source-map",
"build": "rimraf dist && ncp public dist && cross-env NODE_ENV=production webpack --display errors-only",
"test": "cross-env NODE_ENV=test jest"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"object-assign": "^4.1.1",
"promise": "^8.0.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-loadable": "^5.4.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/enzyme": "^3.1.15",
"@types/jest": "^23.3.10",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"@types/react-loadable": "^5.4.2",
"@types/webpack-env": "^1.13.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"cross-env": "^5.2.0",
"css-loader": "^2.0.1",
"dotenv": "^6.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"jest-enzyme": "^7.0.1",
"lint-staged": "^8.1.0",
"mini-css-extract-plugin": "^0.5.0",
"ncp": "^2.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.15.3",
"react-hot-loader": "^4.6.0",
"rimraf": "^2.6.2",
"size-plugin": "^1.1.1",
"style-loader": "^0.23.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}