-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "web-api-starter",
"version": "0.1.0",
"description": "React web app and Express/MongoDB API starter",
"scripts": {
"bootstrap": "lerna clean -y && lerna bootstrap",
"build": "lerna run build",
"build:serve": "npm run build && lerna run serve",
"develop": "lerna run --parallel develop",
"start": "lerna run --parallel start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshpensky/web-api-starter.git"
},
"author": "Josh Pensky <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshpensky/web-api-starter/issues"
},
"homepage": "https://github.com/joshpensky/web-api-starter#readme",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@upstatement/eslint-config": "^0.4.3",
"@upstatement/prettier-config": "^0.3.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"husky": "^3.1.0",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"stylelint": "^12.0.0",
"stylelint-config-sass-guidelines": "^6.2.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
}
}