-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "austerity",
"version": "0.0.0",
"description": "Gameboard web server",
"main": "server/app.js",
"directories": {
"test": "test"
},
"scripts": {
"cli": "node cli/cli.js",
"start": "node server/app.js",
"watch": "supervisor --poll-interval 2000 --quiet --ignore client,.git,node_modules server/app.js",
"pretest": "eslint --fix server client spec && tsc -p jsconfig.json",
"test": "jasmine",
"cover": "nyc --reporter=lcov --reporter=text-summary jasmine",
"profile": "node --inspect-brk node_modules/jasmine/bin/jasmine.js spec/e2espec.js",
"genCards": "node server/generateCardsTable.js > server\\cardsTable.js"
},
"repository": {
"type": "git",
"url": "git://github.com/darthwalsh/Austerity.git"
},
"author": "Carl Walsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/darthwalsh/Austerity/issues"
},
"homepage": "https://github.com/darthwalsh/Austerity",
"devDependencies": {
"@types/csv-parse": "1.1.12",
"@types/express": "4.17.13",
"@types/jasmine": "4.0.0",
"@types/node": "16.11.26",
"@types/ws": "8.5.3",
"csv-parse": "5.0.4",
"eslint": "8.11.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.5.0",
"jasmine": "3.99.0",
"jasmine-reporters": "2.5.0",
"nyc": "15.1.0",
"supervisor": "0.12.0",
"typescript": "4.6.2"
},
"dependencies": {
"express": "4.19.2",
"ws": "8.17.1"
}
}