-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1007 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "sudoku-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src",
"lint": "xo --fix",
"test": "xo src && jest",
"test:only": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"dotenv-expand": "^4.2.0",
"fastify": "^1.12.1",
"jest": "^23.6.0",
"lodash.flatten": "^4.4.0",
"lodash.random": "^3.2.0",
"node-fetch": "^2.2.0",
"xo": "^0.23.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./src/setupTests.js",
"testEnvironment": "node",
"verbose": false
},
"xo": {
"prettier": true,
"semicolon": false,
"space": true,
"rules": {
"capitalized-comments": 0,
"no-alert": 0,
"import/no-unassigned-import": 0,
"no-await-in-loop": 0,
"require-await": 0,
"unicorn/filename-case": 0
},
"envs": [
"node",
"jest",
"browser"
]
}
}