-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "library-vue-ts",
"version": "0.0.1",
"description": "Simple library app with TypeScript",
"main": "server.js",
"scripts": {
"build": "tsc",
"dev": "ts-node ./lib/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start"
},
"keywords": [
"Library",
"App",
"TypeScript",
"Vue",
"Node.js",
"Express.js"
],
"author": "Andre Simamora",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"mongoose": "^5.4.1",
"morgan": "^1.9.1",
"nodemon": "^1.18.9",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/lodash": "^4.14.119",
"@types/mongoose": "^5.3.5",
"@types/morgan": "^1.7.35",
"@types/socket.io": "^2.1.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}