-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 902 Bytes
/
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
{
"author": "Canva",
"name": "knockout-tournament",
"version": "0.0.0",
"scripts": {
"start": "node ./server/index.js",
"test:integration": "mocha ./test/integration/**/*_test.js",
"test:karma": "karma start ./test/karma/karma-configuration.js",
"test": "npm run test:integration && npm run test:karma -- --single-run",
"eslint": "eslint client/**",
"client": "node ./client/client.js"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chromedriver": "^2.23.1",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-sinon-chai": "^1.2.3",
"mocha": "^2.5.3",
"selenium-webdriver": "^2.53.3",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"eslint": "^3.16.1",
"express": "^4.14.0"
}
}