-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.19 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
{
"name": "whats-that",
"version": "1.0.0",
"scripts": {
"postinstall": "npm run install:server && npm run install:client",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install",
"start": "concurrently -p \"[{name}]\" -n \"CLIENT,SERVER\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm:start:client\" \"npm:start:server\"",
"start:client": "cd client && npm start",
"start:server": "cd server && npm start",
"precommit": "concurrently -p \"[{name}]\" -n \"CLIENT,SERVER\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm:precommit:client\" \"npm:precommit:server\"",
"precommit:client": "cd client && npm run precommit",
"precommit:server": "cd server && npm run precommit"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/F-Smith/whats-that.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/F-Smith/whats-that/issues"
},
"homepage": "https://github.com/F-Smith/whats-that#readme",
"devDependencies": {
"concurrently": "^4.1.0",
"husky": "^2.2.0"
},
"dependencies": {
"react-dom-confetti": "^0.1.0"
}
}