forked from JonatanGarciaClavo/ContactsAppRematch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.88 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
{
"name": "contacts-app-rematch",
"version": "0.1.0",
"private": true,
"homepage": "http://darkxeno.github.io/ContactsAppRematch",
"devDependencies": {
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.2",
"eslint-plugin-react-hooks": "0.0.0",
"gh-pages": "^2.0.1",
"prettier": "1.15.3",
"react-scripts": "2.1.2",
"webpack-bundle-analyzer": "^3.0.3"
},
"dependencies": {
"@blueprintjs/core": "3.10.0",
"@blueprintjs/select": "3.4.0",
"bey": "1.1.0",
"classnames": "2.2.6",
"final-form": "4.11.0",
"firebase": "4.13.1",
"immer": "1.9.3",
"json-diff": "0.5.3",
"jss": "10.0.0-alpha.5",
"lodash": "4.17.11",
"prop-types": "15.6.1",
"react": "16.8.0-alpha.0",
"react-dom": "16.8.0-alpha.0",
"react-final-form": "4.0.2",
"react-jss": "10.0.0-alpha.5",
"react-pose": "4.0.4",
"react-sidebar": "3.0.2",
"react-table": "6.8.6",
"reinspect": "0.4.2",
"reselect": "3.0.1",
"router5": "7.0.1",
"router5-plugin-browser": "7.0.1",
"router5-plugin-logger": "7.0.1",
"use-immer": "0.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "node build.js",
"deploy": "gh-pages -d build",
"prettier": "./node_modules/.bin/prettier --config .prettierrc ./src/**/**/*.js ./src/**/*.js ./src/*.js -l;exit 0",
"prettierFix": "./node_modules/.bin/prettier --config .prettierrc ./src/**/**/*.js ./src/**/*.js ./src/*.js --write",
"eslint": "./node_modules/.bin/eslint ./src/",
"eslintFix": "./node_modules/.bin/eslint ./src/ --fix"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}