-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "fsi-backend",
"version": "0.0.0",
"private": true,
"main": "src/app.js",
"scripts": {
"build": "babel src -d dist --copy-files",
"start": "npm run build && node dist/app.js",
"serve": "node dist/app.js",
"start:dev": "nodemon --exec babel-node src",
"test": "npm run build && nyc --reporter=html --reporter=text mocha --require @babel/register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/**/*.js"
},
"dependencies": {
"axios": "^0.21.1",
"base-64": "^1.0.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"helmet": "^4.3.1",
"http-errors": "~1.6.3",
"innovation-sandbox": "^1.3.1",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"supertest": "^6.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0"
}
}