forked from JarrodMalkovic/auction-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
57
{
"name": "listings",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev src/index.ts",
"test": "cross-env NODE_ENV=test jest --watchAll --no-cache",
"coverage": "cross-env NODE_ENV=test jest --coverage"
},
"dependencies": {
"@jjmauction/common": "^1.0.21",
"cloudinary": "^1.24.0",
"cookie-session": "^1.4.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.7.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"node-nats-streaming": "^0.3.2",
"sequelize": "^6.5.0",
"sequelize-slugify": "^1.4.0",
"socket.io": "^2.3.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2",
"uuid": "^8.2.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/cookie-session": "^2.0.42",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.19",
"@types/jsonwebtoken": "^8.5.0",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"jest": "^26.6.3",
"sqlite3": "^5.0.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./tests/setup.ts"
]
},
"keywords": [],
"author": "",
"license": "ISC"
}