-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 756 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 756 Bytes
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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"watchts": "npx tsc -w",
"start-dev": "nodemon -e ts,json,mustache src/server.ts"
},
"author": "William Camelo",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/mustache-express": "^1.2.2",
"@types/node": "^18.11.9",
"@types/sqlite3": "^3.1.8",
"@types/validator": "^13.7.10"
},
"dependencies": {
"express": "^4.18.2",
"mustache-express": "^1.3.2",
"mysql2": "^2.3.3",
"nodemon": "^2.0.20",
"sequelize": "^6.25.5",
"sqlite3": "^5.1.2",
"validator": "^13.7.0"
}
}