-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 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
37
38
{
"name": "chaty",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "cd client && npm install && cd .. && cd server && npm install",
"rmnm": "rm -rf node_modules && rm -rf client/node_modules && rm -rf server/node_modules",
"lint:client": "cd client && npm run lint",
"lint:server": "cd server && npm run lint",
"dev:client": "cd client && npm start",
"dev:server": "cd server && npm run dev",
"lint": "npm run lint:client && npm run lint:server",
"lint-fix:client": "cd client && npm run lint-fix",
"lint-fix:server": "cd server && npm run lint-fix",
"lint-fix": "npm run lint-fix:client && npm run lint-fix:server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G10/Chaty.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G10/Chaty/issues"
},
"homepage": "https://github.com/GSG-G10/Chaty#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"nodemon": "^2.0.14"
},
"engines": {
"node": "14.18.1"
}
}