-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 890 Bytes
/
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
{
"name": "adv_web",
"version": "1.0.0",
"description": "Final project",
"main": "src/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CedricThomas/adv_web.git"
},
"author": "Cédric THOMAS",
"license": "ISC",
"bugs": {
"url": "https://github.com/CedricThomas/adv_web/issues"
},
"homepage": "https://github.com/CedricThomas/adv_web#readme",
"devDependencies": {
"nodemon": "~2.0.3",
"ts-node": "~8.9.1"
},
"dependencies": {
"@types/express": "~4.17.6",
"@types/node": "~13.13.4",
"@types/socket.io": "~2.1.4",
"@types/uuid": "~7.0.3",
"express": "~4.17.1",
"socket.io": "~2.3.0",
"tslint": "~6.1.2",
"typescript": "~3.8.3",
"uuid": "~8.0.0"
}
}