-
Notifications
You must be signed in to change notification settings - Fork 293
/
Copy pathpackage.json
81 lines (81 loc) · 2.48 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
{
"name": "arc",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node server",
"test": "jest",
"coverage": "npm test -- --coverage && opn coverage/lcov-report/index.html",
"lint": "eslint 'src/**/*.js' 'src-clean/**/*.js' webpack.config.js server.js",
"clean": "del 'dist/!(.git*|Procfile)**'",
"copy": "copyfiles -u 1 public/* public/**/* dist",
"build": "npm run clean && npm run copy && cross-env NODE_ENV=production webpack"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/src-clean"
],
"moduleDirectories": [
"src",
"node_modules"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/fileMock.js",
"^(components|containers)$": "<rootDir>/test/componentsMock.js",
"^(store|\\.\\.)\\/selectors$": "<rootDir>/test/selectorsMock.js"
}
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"copyfiles": "^1.0.0",
"cross-env": "^3.1.2",
"del-cli": "^0.2.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.0",
"jest-cli": "^18.0.0",
"json-loader": "^0.5.4",
"opn-cli": "^3.1.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.3.2",
"redux-mock-store": "^1.2.1",
"sinon": "^1.17.6",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"axios": "^0.15.2",
"babel-polyfill": "^6.16.0",
"arc-theme": "^0.2.1",
"history": "3.0.0",
"lodash": "^4.16.4",
"normalizr": "^3.0.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.5",
"react-modal": "^1.6.4",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.6",
"react-router-scroll": "^0.4.1",
"redux": "^3.6.0",
"redux-form": "^6.1.1",
"redux-saga": "^0.14.0",
"styled-components": "^1.2.1",
"validator": "^6.1.0"
}
}