-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.33 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": "dream-league-web",
"version": "1.11.0",
"description": "Dream League web frontend",
"main": "app/index.js",
"scripts": {
"start": "node app/index.js",
"start:watch": "nodemon --inspect=0.0.0.0 --ext css,js,njk --legacy-watch app/index.js",
"start:debug": "nodemon --inspect-brk=0.0.0.0 --ext css,js,njk --legacy-watch app/index.js",
"test": "jest --runInBand --forceExit",
"test:lint": "eslint",
"test:integration": "jest --testPathPattern=test/integration --coverage=false",
"test:unit": "jest --testPathPattern=test/unit --coverage=false",
"test:watch": "jest --coverage=false --onlyChanged --watch --runInBand",
"test:debug": "node --inspect-brk=0.0.0.0 ./node_modules/jest/bin/jest.js --runInBand --no-cache --watchAll"
},
"author": "John Watson",
"license": "MIT",
"dependencies": {
"@hapi/boom": "10.0.0",
"@hapi/crumb": "8.0.1",
"@hapi/hapi": "20.2.2",
"@hapi/inert": "7.0.0",
"@hapi/vision": "7.0.0",
"@hapi/wreck": "18.0.0",
"hapi-auth-jwt2": "10.7.0",
"hapi-pino": "10.1.0",
"joi": "17.6.0",
"nunjucks": "3.2.4",
"qs": "6.11.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"devDependencies": {
"blipp": "4.0.2",
"eslint": "9.7.0",
"jest": "28.1.3",
"neostandard": "0.11.1",
"nodemon": "3.0.1"
}
}