-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 935 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
{
"name": "tic-em-trilhas-nodejs",
"version": "1.0.0",
"description": "Demo node.js application presented in ticemtrilhas.org.br",
"main": "app.js",
"scripts": {
"test": "test",
"build": "npx tsc",
"start": "node dist/app.js",
"start:dev": "nodemon ./app.ts"
},
"repository": {
"type": "git",
"url": "https//github.com/PozziSan/tic-em-trilhas-nodejs"
},
"keywords": [
"nodejs",
"ticemtrilhas",
"vnt",
"vntschool"
],
"author": "Pedro Pozzi Ferreira",
"license": "GPL-3.0-or-later",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.19.2",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/validator": "^13.11.10",
"typescript": "^5.4.5"
}
}