forked from diegohaz/arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
{
"name": "arc",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node server",
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src src-clean .storybook",
"storybook": "start-storybook -p 9001 -c .storybook",
"build:clean": "del \"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"
},
"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$": "<rootDir>/test/componentsMock.js"
}
},
"devDependencies": {
"@kadira/storybook": "^2.35.2",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"copyfiles": "^1.0.0",
"cross-env": "^3.1.4",
"del-cli": "^0.2.1",
"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": "^3.0.2",
"eslint-plugin-no-unused-vars-rest": "^1.0.4",
"eslint-plugin-react": "^6.9.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.26.0",
"jest-cli": "^18.1.0",
"json-loader": "^0.5.4",
"opn-cli": "^3.1.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.4.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"history": "3.0.0",
"lodash": "^4.17.4",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-modal": "^1.6.5",
"react-router": "^3.0.0",
"react-router-scroll": "^0.4.1",
"styled-components": "^1.2.1",
"styled-theme": "^0.3.0",
"styled-tools": "^0.1.2"
}
}