-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.54 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
65
66
67
68
69
70
71
72
73
74
{
"name": "super-nintendo-game-info",
"version": "1.1.2",
"description": "Get information on every official North American SNES game release.",
"author": "Ian Rose",
"license": "ISC",
"main": "index.js",
"repository": {
"url": "https://github.com/ianrosedev/Super-Nintendo-Game-Info"
},
"bugs": {
"url": "https://github.com/ianrosedev/Super-Nintendo-Game-Info/issues"
},
"homepage": "https://github.com/ianrosedev/Super-Nintendo-Game-Info#readme",
"engines": {
"node": "11.x"
},
"heroku-run-build-script": true,
"scripts": {
"build": "(cd server && npm install) && (cd client && npm install && npm run build)",
"coverage-client": "npm run coverage --prefix client",
"coverage-report-client": "npm run coverage-client && codecov",
"format": "prettier --check --write \"**/*.{js, json, html, scss, md}\"",
"format-ci": "prettier -l --write \"**/*.{js, json, html, scss, md}\"",
"install-all": "npm install && (cd client && npm install) && (cd server && npm install)",
"lint": "concurrently \"cd client && npm run lint\" \"cd server && npm run lint\"",
"start": "node -r esm index.js",
"start-dev": "concurrently -n SERVER,CLIENT -c blue,cyan -k \"npm:start-dev-server\" \"npm:start-dev-client\"",
"start-dev-client": "npm start --prefix client",
"start-dev-server": "nodemon -r esm --inspect --ignore \"client\" index.js || exit 0",
"test": "npm run test-client",
"test-ci": "npm run test-client-ci",
"test-client": "npm test --prefix client",
"test-client-ci": "npm run test-ci --prefix client",
"test-client-pre-commit": "npm run test-pre-commit --prefix client"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, json, html, scss, md}": [
"eslint --fix",
"prettier --write",
"git add"
],
"client/**/*.{js, json, html, scss, md}": [
"npm run test-client-pre-commit",
"git add"
]
},
"dependencies": {
"esm": "^3.2.22"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"codecov": "^3.3.0",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-flowtype": "^3.7.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"nodemon": "^1.19.0",
"prettier": "^1.17.0"
}
}