-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 763 Bytes
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
{
"name": "react-mirror",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test-server": "cd server && npm test",
"test-client": "cd client && npm test",
"lint-server": "cd server && pretty-quick --staged npm lint",
"lint-client": "cd client && pretty-quick --staged npm lint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-server && npm run lint-client",
"pre-push": "npm run test-server && npm run test-client"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nas5w/react-mirror.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"husky": "^1.3.1",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.1"
}
}