-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 964 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
36
37
38
39
40
41
42
{
"name": "reboot-back-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon dist/index.js",
"start": "node dist/index.js",
"build-ts": "tsc",
"postinstall": "npm run build-ts"
},
"author": "",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.6",
"cors": "^2.8.4",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.3",
"morgan": "^1.9.1",
"typescript": "^3.7.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/mongoose": "^5.5.32",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.17",
"nodemon": "^1.17.2",
"standard": "^14.3.1"
},
"standard": {
"plugins": [
"html"
],
"parser": "babel-eslint"
}
}