-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 KB
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
{
"name": "effector-react-app",
"version": "1.0.0",
"main": "index.js",
"author": "Aleksander <aleksohotnikov@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"watch": "webpack-dev-server",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "jest -o",
"pre-push": "jest -all"
}
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "identity-obj-proxy"
}
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.1.0",
"effector": "^20.0.0",
"effector-react": "^20.1.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.1",
"jest": "^24.8.0",
"node-sass": "^4.13.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack-dev-server": "^3.7.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-react-airbnb-prettier": "^0.0.11",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"identity-obj-proxy": "^3.0.0",
"prettier": "^1.18.2",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
}
}