-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "Tests",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon ./js/index.js --watch js",
"test": "mocha \"./{,!(node_modules)/**/}*.spec.ts\" --require ts-node/register -O spec",
"mocha": "mocha --reporter json-stream --require ts-node/register"
},
"dependencies": {
"@types/adm-zip": "^0.4.31",
"@types/chai": "^4.0.4",
"@types/express": "^4.0.38",
"@types/mocha": "^2.2.43",
"@types/multer": "^1.3.5",
"@types/node": "^8.0.47",
"@types/puppeteer": "^0.12.1",
"@types/socket.io": "^1.4.31",
"@types/tmp": "^0.0.33",
"adm-zip": "^0.4.7",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"express": "^4.16.2",
"express-validator": "^4.2.1",
"ghostjs": "^1.13.1",
"glob": "^7.1.2",
"mocha": "^4.0.1",
"multer": "^1.3.0",
"puppeteer": "^0.12.0",
"socket.io": "^2.0.4",
"tmp": "^0.0.33",
"ts-node": "^3.3.0",
"typescript": "^2.5.3",
"uuid": "^3.1.0"
},
"devDependencies": {
"nodemon": "^1.12.1"
}
}