-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
56
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "nodemon src/app.ts",
"prod": "ts-node src/app.ts",
"build": "tsc",
"test": "mocha --require ts-node/register 'test/**/*.ts' --exit --timeout 10000",
"clean": "tsc --build --clean"
},
"devDependencies": {
"@its-edmund/eslint-config": "^0.0.1",
"@its-edmund/prettier-config": "^0.0.1",
"@its-edmund/tsconfig": "^1.2.4",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.18",
"@types/supertest": "^2.0.11",
"@types/twilio": "^3.19.3",
"@types/uuid": "^8.3.4",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.2.2"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"bottleneck": "^2.19.5",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.3",
"morgan": "^1.10.0",
"ts-node": "^10.5.0",
"twilio": "^3.75.0",
"typescript": "^4.5.5",
"uuid": "^8.3.2"
},
"eslintConfig": {
"extends": "@its-edmund/eslint-config"
},
"prettier": "@its-edmund/prettier-config"
}