-
Notifications
You must be signed in to change notification settings - Fork 292
/
package.json
102 lines (102 loc) · 3.72 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
{
"name": "arc",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm run dev",
"env:dev": "cross-env NODE_ENV=development",
"env:prod": "cross-env NODE_ENV=production",
"env:example": "cross-env SOURCE=src-example",
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src src-example private webpack.config.js",
"storybook": "start-storybook -p 9001 -c private/storybook",
"storybook:example": "npm run env:example -- npm run storybook",
"dev": "npm run env:dev -- webpack-dev-server",
"dev:example": "npm run env:example -- npm run dev",
"build:clean": "rimraf \"dist/!(.git*|Procfile)**\"",
"build:copy": "copyfiles -u 1 public/* public/**/* dist",
"prebuild": "npm run build:clean && npm run build:copy",
"build": "npm run env:prod -- webpack",
"build:example": "npm run env:example -- npm run build"
},
"jest": {
"moduleDirectories": [
"src",
"src-example",
"node_modules"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/private/jest/fileMock.js",
"^components$": "<rootDir>/private/jest/componentsMock.js"
},
"setupFiles": [
"<rootDir>/private/jest/setupTests.js"
]
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.1.4",
"@storybook/react": "^4.1.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
"copyfiles": "^2.0.0",
"cross-env": "^5.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^3.0.1",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"jest-cli": "^23.6.0",
"opn-cli": "^4.0.0",
"raw-loader": "^1.0.0",
"rimraf": "^2.6.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14",
"webpack-md5-hash": "^0.0.6"
},
"dependencies": {
"lodash": "^4.17.13",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"react-modal": "^3.1.11",
"react-router-dom": "^4.3.1",
"styled-components": "^3.5.0-0",
"styled-theme": "^0.3.3",
"styled-tools": "^1.6.0"
}
}