-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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": "csv-processor",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "yarn tsc",
"tsc": "tsc --project tsconfig.compile.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "nodemon --watch \"src/**/*.ts\" --ignore \"node_modules/**/*\" --exec ts-node src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"test": "cross-env NODE_ENV=test jest"
},
"dependencies": {
"@tsed/ajv": "5.59.1",
"@tsed/common": "5.59.1",
"@tsed/core": "5.59.1",
"@tsed/di": "5.59.1",
"@tsed/mongoose": "5.59.1",
"@tsed/multipartfiles": "5.59.1",
"@tsed/platform-express": "5.59.1",
"@types/multer": "1.4.3",
"ajv": "6.12.2",
"body-parser": "1.19.0",
"compression": "1.7.4",
"concurrently": "5.2.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"cross-env": "7.0.2",
"date-fns": "2.14.0",
"express": "4.17.1",
"fast-csv": "4.3.1",
"method-override": "3.0.0",
"mongoose": "5.9.20"
},
"devDependencies": {
"@tsed/cli-plugin-mongoose": "1.14.1",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.6",
"@types/express": "4.17.6",
"@types/jest": "26.0.3",
"@types/method-override": "0.0.31",
"@types/mongoose": "5.7.28",
"@types/node": "14.0.14",
"@types/supertest": "2.0.9",
"concurrently": "5.2.0",
"jest": "26.1.0",
"nodemon": "2.0.4",
"supertest": "4.0.2",
"ts-jest": "26.1.1",
"ts-node": "8.10.2",
"typescript": "3.9.5"
}
}