forked from Chensokheng/rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 769 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 769 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
31
32
33
{
"name": "crud-ts",
"version": "1.0.0",
"description": "Build TODO's CRUD rest API with typescript + Express.js + Sequelize + Sqlite3",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn src/server.ts",
"build": "tsc",
"start": "node dist/src/server.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.24",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"jest": "^27.0.6",
"supertest": "^6.1.4",
"ts-jest": "^27.0.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependencies": {
"express": "^4.17.1",
"express-validator": "^6.10.0",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
}
}