-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 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": "mistplay",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --verbose --runInBand --detectOpenHandles",
"test:unit": "jest --verbose --runInBand --detectOpenHandles",
"test:coverage": "jest --runInBand --no-cache --verbose --collect-coverage --passWithNoTests --detectOpenHandles",
"dev": "ts-node-dev src/index.ts",
"build": "npx tsc -p tsconfig-build.json",
"start": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/mongoose": "^5.11.97",
"@types/node": "^15.12.5",
"@types/redis": "^2.8.31",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.4"
},
"dependencies": {
"aws-sdk": "^2.937.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^5.13.2",
"redis": "^3.1.2",
"swagger-ui-express": "^4.1.6",
"uuid": "^3.3.2"
}
}