-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "user-auth-api",
"version": "1.0.0",
"description": "The example of simple user auth API",
"main": "index.js",
"scripts": {
"build": "tsc && cp -R ./src/models ./dist/ && cp -R ./src/config ./dist/",
"dev": "ts-node ./src/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start",
"test": "mocha --exit -r ts-node/register src/tests/auth.test.ts src/tests/crud.test.ts",
"unit-test": "mocha --exit -r ts-node/register src/tests/unit.test.ts"
},
"author": "4-life",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai-http": "^3.0.5",
"@types/express": "^4.16.0",
"@types/node": "^14.14.35",
"@types/passport": "^1.0.6",
"@types/passport-jwt": "^3.0.5",
"@types/validator": "^13.1.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.18.3",
"chai-http": "^4.2.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"nodemon": "^1.18.4",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"sequelize": "^5.15.1",
"sequelize-cli": "^5.1.0",
"sqlite3": "^5.0.2",
"typescript": "^3.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"sinon": "^6.3.5",
"ts-node": "^7.0.1"
}
}