-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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": "chumbo-api",
"version": "0.0.0",
"description": "An API for The Chumbo",
"scripts": {
"build": "gasket build",
"start": "gasket start",
"local": "nodemon --watch routes --exec gasket local",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"scripts:players": "node scripts/players.js",
"scripts:leagues": "node scripts/leagues.js",
"scripts:rosters": "node scripts/rosters.js",
"scripts:users": "node scripts/users.js"
},
"dependencies": {
"@gasket/cli": "^5.7.0",
"@gasket/log": "^5.6.0",
"@gasket/plugin-jest": "^5.6.0",
"@gasket/preset-api": "^5.9.0",
"body-parser": "^1.19.0",
"express": "^4.16.3",
"mongoose": "^5.11.8"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.5",
"console-table-printer": "^2.10.0",
"jest": "^24.8.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"ora": "^3.4.0",
"p-queue": "^6.6.2",
"ramda": "^0.27.1",
"request-promise": "^4.2.6",
"snazzy": "^9.0.0",
"standard": "^16.0.3"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"build/"
]
}
}