-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
50 lines (50 loc) · 2.09 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
{
"name": "vita",
"version": "1.0.0",
"description": "<!-- LATEST ANNOUNCEMENTS -->",
"main": "index.js",
"scripts": {
"install-client": "cd client && npm install",
"install-server": "cd api && npm install",
"install-admin": "cd ../Admin && npm install",
"remove-client": "cd client && rm -rf node_modules",
"remove-server": "cd api && rm -rf node_modules",
"remove-admin": "cd ../Admin && rm -rf node_modules",
"install-modules": "npm install && npm run install-client && npm run install-server",
"install-modules-full": "npm install && npm run install-client && npm run install-server && npm run install-admin",
"remove-modules": "rm -rf node_modules && npm run remove-client && npm run remove-server",
"remove-modules-full": "rm -rf node_modules && npm run remove-client && npm run remove-server && npm run remove-admin",
"client": "cd client && npm run start",
"server": "cd api && npm run dev",
"server:slow": "cd api && npm run dev-slow",
"admin": "cd ../Admin && npm run start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"dev:ts": "concurrently \"npm run server:slow\" \"npm run client\"",
"dev-full": "concurrently \"npm run server\" \"npm run client\" \"npm run admin\"",
"pretty": "cd api && npm run pretty && cd ../client && npm run pretty",
"pre-commit": "cd api && npm run pre-commit && cd ../client && npm run pre-commit",
"build": "cd api && npm run dev && cd ../client && npm run build",
"start:production": "cd api && npm run start:production && cd ../client && npm run start:production",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rishabh-malhotraa/Vita.git"
},
"keywords": [],
"author": "Rishabh Malhotra",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rishabh-malhotraa/Vita/issues"
},
"homepage": "https://github.com/Rishabh-malhotraa/Vita#readme",
"devDependencies": {
"concurrently": "^6.4.0",
"husky": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
}
}