-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
{
"name": "basic-starter-kit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && node ./server/index.js",
"test": "jest /src --coverage",
"start:dev": "webpack-dev-server --env=development",
"clean": "rimraf ./dist",
"build": "npm run clean && webpack --env=production --progress --profile --colors",
"lint": "eslint --ext .jsx,.js ./src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-2": "^6.13.0",
"css-loader": "^0.23.1",
"enzyme": "^2.8.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"express": "^4.15.2",
"express-static": "^1.1.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"html-webpack-template": "^6.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^19.0.2",
"jest-css-modules": "^1.1.0",
"jest-enzyme": "^3.0.0",
"node-sass": "^4.5.2",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.4.2",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.1",
"webpack": "^2.3.2",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.1.0-beta.0"
},
"dependencies": {
"@material/animation": "^0.3.1",
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-logger": "^3.0.0",
"redux-responsive": "^4.1.1",
"redux-thunk": "^2.2.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"moduleNameMapper": {
"\\.(scss)$": "identity-obj-proxy"
}
}
}