-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "yatl",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"start": "node --loader ts-node/esm src/index.ts",
"start:prod": "NODE_ENV='production' node build/index.js",
"start:webapp": "PUBLIC='build/public' node --loader ts-node/esm src/index.ts",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect src/index.ts",
"dev:debug:break": "nodemon --config nodemon.json --inspect-brk src/index.ts"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.10.0",
"got": "^11.8.2",
"jsonwebtoken": "^8.5.1",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2",
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/express-jwt": "^6.0.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.14.37",
"@types/validator": "^13.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}