forked from diegohaz/arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.85 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "arc",
"version": "0.1.0",
"private": true,
"main": "src",
"scripts": {
"start": "node .",
"test": "cross-env NODE_ENV=test jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src src-clean .storybook",
"dev": "concurrently --kill-others \"nodemon --watch src\" \"node webpack/webpack-dev-server\"",
"storybook": "start-storybook -p 9001 -c .storybook",
"build:clean": "rimraf \"dist/!(.git*|Procfile)**\"",
"build:copy": "copyfiles -u 1 public/* public/**/* dist",
"prebuild": "npm run build:clean && npm run build:copy",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config",
"ws": "cross-env NODE_ENV=production webpack --config webpack/webpack.config --json > stats.json",
"heroku-postbuild": "npm run build",
"api": "json-server --watch db.json --port 3005 --id _id",
"api:delay": "json-server --watch db.json --port 3005 --id _id --delay 1500"
},
"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",
"^(store|\\.\\.)\\/actions$": "<rootDir>/test/actionsMock.js"
}
},
"devDependencies": {
"@kadira/storybook": "^2.35.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.2.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"concurrently": "^3.4.0",
"copyfiles": "^1.0.0",
"cross-env": "^3.1.4",
"enzyme": "^2.7.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-no-unused-vars-rest": "^1.0.4",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.10.0",
"jest-cli": "^19.0.0",
"json-loader": "^0.5.4",
"nodemon": "^1.11.0",
"opn-cli": "^3.1.0",
"progress-bar-webpack-plugin": "^1.9.3",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.6",
"redux-mock-store": "^1.2.1",
"rimraf": "^2.6.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-isomorphic-tools": "^3.0.0",
"webpack-md5-hash": "^0.0.5"
},
"dependencies": {
"babel-core": "^6.21.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"dateformat": "^2.0.0",
"draft-js": "^0.10.0",
"draft-js-export-html": "^0.5.2",
"draft-js-import-html": "^0.3.2",
"draftjs-utils": "^0.7.0",
"express": "^4.14.0",
"express-force-ssl": "^0.3.2",
"history": "3.0.0",
"lodash": "^4.17.4",
"material-ui": "v1.0.0-alpha.7",
"material-ui-icons": "^1.0.0-alpha.2",
"morgan": "^1.7.0",
"normalizr": "^3.0.1",
"nprogress": "^0.2.0",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.1",
"react-helmet": "^4.0.0",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"recompose": "^0.22.0",
"redux": "^3.6.0",
"redux-form": "^6.4.3",
"redux-form-submit": "^0.1.3",
"redux-saga": "^0.14.1",
"redux-thunk": "^2.1.0",
"serialize-javascript": "^1.3.0",
"validator": "^7.0.0"
}
}