-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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": "vibeezz-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node -r dotenv/config dist/server.js",
"build": "npm run clean && npm run build-ts",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon -r dotenv/config dist/server.js",
"clean": "rimraf ./dist",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"eslint": "eslint . --ext .js,.ts",
"upgrade": "npm update --save-dev && npm update --save"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"graphql-yoga": "^1.18.3",
"mongoose": "^5.12.7"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/mongoose": "^5.10.5",
"@types/morgan": "^1.9.2",
"colors": "^1.4.0",
"dotenv": "^9.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}