-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "bookli",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node ./scripts/init.js",
"build": "node ./scripts/init.js build",
"start": "cross-env NODE_ENV=production node ./server/src/index.js",
"test": "cross-env NODE_ENV=test jest",
"test:e2e": "cross-env NODE_ENV=test nightwatch test/e2e",
"lighthouse": "lhci autorun",
"lint": "eslint .",
"prettier": "prettier --write ."
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"detect-port": "^1.3.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"nunjucks": "^3.2.1",
"sequelize": "^5.21.6",
"sqlite3": "^4.1.1",
"cross-env": "^7.0.2"
},
"devDependencies": {
"@lhci/cli": "^0.3.14",
"babel-jest": "^25.2.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chromedriver": "^83.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.2.7",
"jest-environment-jsdom-sixteen": "^1.0.3",
"nightwatch": "^1.3.4",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2",
"prettier": "^2.0.5"
}
}