-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "ipfs-uploader",
"version": "0.2.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TalaikisINc/ipfs-uploader.git"
},
"author": "Tadas Talaikis <info@talaikis.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/TalaikisINc/ipfs-uploader/issues"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"grommet": "^1.13.0",
"grommet-css": "^1.6.0",
"ipfs-mini": "^1.1.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-ga": "^2.6.0",
"react-redux": "^7.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "3.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"analyze": "source-map-explorer build/static/js/main.*",
"cypress:open": "cypress open",
"cypress:run": "cypress run --record",
"test": "jest"
},
"devDependencies": {
"babel-plugin-import": "^1.12.1",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.4",
"jest": "^24.9.0",
"source-map-explorer": "^2.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run build",
"pre-push": "npm run build"
}
}
}