-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend for my Twilight APP",
"main": "index.ts",
"scripts": {
"start": "node index.ts",
"dev": "nodemon index.ts",
"build": "npm install",
"testOne": "mocha ^[0-9a-zA-Z].test.js",
"testAll": "mocha [0-9a-zA-Z]"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.2",
"@types/request": "^2.48.8",
"@types/uuid": "^9.0.2",
"bcrypt-ts": "^4.0.0",
"body-parser": "^1.20.2",
"cloudinary": "^1.40.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.4.5",
"request": "^2.88.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.3.6",
"@types/colors": "^1.2.1",
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.5",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.16",
"bcryptjs": "^2.4.3",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"sequelize": "^6.32.1",
"sinon": "^16.0.0",
"sqlite3": "^5.1.6",
"typescript": "^5.2.2"
}
}