-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "exchange-ts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"start": "node dist/index.js",
"dev": "./node_modules/.bin/ts-node-dev ./src/index.ts",
"test": "jest"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/eslint": "^8.4.10",
"@types/express": "^4.17.14",
"@types/jest": "^29.4.0",
"@types/mongoose": "^5.11.97",
"@types/redis": "^4.0.11",
"@types/supertest": "^2.0.12",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": ">=5.31.0",
"@typescript-eslint/parser": ">=5.31.0",
"eslint": ">=8.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.54.1",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": ">=4.4"
},
"dependencies": {
"axios": "^1.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^6.7.2",
"redis": "^4.5.1",
"supertest": "^6.3.3",
"yup": "^1.0.1"
}
}