forked from frlp-utn-ingsoft/bookli
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
{
"name": "bookli",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node ./scripts/init.js",
"start": "node ./server/src/index.js",
"test": "cross-env NODE_ENV=test jest",
"test:e2e": "cross-env NODE_ENV=test nightwatch test/e2e",
"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.13",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"babel-jest": "^25.5.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chromedriver": "^83.0.0",
"cross-env": "^7.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^25.5.4",
"jest-environment-jsdom-sixteen": "^1.0.3",
"nightwatch": "^1.3.6",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}