-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "go-fund-me",
"version": "2.0.0-alpha.8",
"license": "MIT",
"scripts": {
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production PORT=80 pm2 start build/server.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@sentry/browser": "^4.0.0-beta.12",
"bootstrap": "^4.1.3",
"express": "^4.16.3",
"fs-extra": "^7.0.0",
"razzle": "^2.4.0",
"react": "^16.4.2",
"react-content-loader": "^3.1.2",
"react-dom": "^16.4.2",
"react-router-dom": "^4.3.1",
"reactstrap": "^6.4.0",
"solc": "^0.4.24",
"truffle-hdwallet-provider": "0.0.6",
"uuid": "^3.3.2",
"web3": "^1.0.0-beta.35"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2"
}
}