-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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
{
"name": "taboo",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"build": "tsc && npm run build:frontend ",
"dev": "tsc && concurrently \"tsc -w\" \"nodemon dist/app.js\" \"npm run dev --prefix frontend\"",
"build:frontend": "npm install --only=dev --prefix frontend && npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.11",
"@types/socket.io": "^2.1.13",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"concurrently": "^6.0.0",
"eslint": "^7.21.0",
"eslint-plugin-svelte3": "^3.1.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"svelte": "^3.0.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"socket.io": "^4.0.0"
},
"engines": {
"node": "14.x"
}
}