-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
58
{
"name": "node-typescript-init",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc && node dist",
"grunt": "grunt",
"test": "ava"
},
"ava": {
"files": [
"./src/test/letter.test.ts",
"./src/test/utils.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/register": "^7.17.7",
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.25",
"@types/supertest": "^2.0.12",
"body-parser": "^1.20.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"mongodb-memory-server": "^8.5.2",
"nodemon": "^2.0.15",
"q": "^1.5.1",
"supertest": "^6.2.3",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.7.0",
"typedi": "^0.10.0",
"typescript": "^4.6.3"
},
"dependencies": {
"ava": "^4.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-typescript": "^7.0.0-alpha.19",
"babel-register": "^6.26.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"mongoose": "^6.3.1"
}
}