-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "react-prismic-cms",
"version": "0.3.1",
"main": "components/index.js",
"dependencies": {
"classnames": "^2.2.6",
"prismic-javascript": "^1.5.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-json-view": "^1.19.1",
"react-rainbow-components": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"firebase-tools": "^5.1.1",
"pre-push": "^0.1.1",
"react-dom": "^16.5.2",
"react-rainbow-styleguide": "^1.1.0",
"react-scripts": "2.0.4",
"react-styleguidist": "^7.3.9"
},
"scripts": {
"start": "npx styleguidist server",
"build": "npx styleguidist build",
"build:components": "npx babel ./src --out-dir ./",
"test": "react-scripts test",
"lint": "eslint src",
"eject": "react-scripts eject",
"prepublishOnly": "yarn clean && yarn build:components",
"clean": "rm -Rf components",
"deploy": "yarn build && firebase deploy"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"license": "MIT",
"pre-push": [
"lint"
]
}