-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "custom boilerplate for react",
"main": "/dist/bundle.js",
"scripts": {
"start": "webpack-dev-server --open",
"create": "webpack",
"production": "webpack -p",
"test": "jest",
"buildw": "SET NODE_ENV='production' & webpack -p",
"buildu": "NODE_ENV='production' && webpack -p",
"firebase-init": "firebase login & firebase init",
"deploy": " npm run build & firebase deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.26.0",
"moment": "^2.18.1",
"normalize-css": "^2.3.1",
"prop-types": "^15.5.10",
"query-string": "^5.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^15.6.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-loader": "6.2.7",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-latest": "6.16.0",
"babel-preset-react": "6.16.0",
"css-loader": "^0.28.7",
"enzyme": "^2.9.1",
"enzyme-to-json": "^2.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.1.0",
"moxios": "^0.4.0",
"node-sass": "^4.5.3",
"react-addons-perf": "^15.4.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.8.1"
},
"jest": {
"moduleNameMapper": {
"\\.(s?css|less)$": "identity-obj-proxy"
},
"setupTestFrameworkScriptFile": "./scripts/setup.js",
"modulePathIgnorePatterns": [
"./scripts/"
]
}
}