-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
41
42
43
44
45
{
"name": "trading",
"private": true,
"description": "Project for Ramverk2",
"scripts": {
"start": "node app.js",
"production": "NODE_ENV='production' node app.js",
"pretest": "$(db/reset_test_db.bash)",
"test": "nyc --reporter=html --reporter=text mocha 'test/javascripts/**/*.js'",
"report-coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"report-codecov": "nyc report --reporter=lcov > coverage.lcov && codecov",
"clean": "rm -rf npm-debug.log coverage .nyc_output",
"exdeb": "DEBUG=redovisa:* npm start",
"eslint": "eslint ."
},
"dependencies": {
"acorn": "^6.3.0",
"bcrypt": "^3.0.6",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.4",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"sqlite3": "^4.1.0",
"test": "^0.6.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "^3.5.0",
"coveralls": "^3.0.6",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-vue": "^5.2.3",
"javascript-style-guide": "^0.9.10",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"version": "1.0.4"
}