-
Notifications
You must be signed in to change notification settings - Fork 0
/
package0.json
43 lines (43 loc) · 1.22 KB
/
package0.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
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"prestart": "babel ./src --out-dir build",
"start": "node ./build/bin/www",
"dev": "nodemon --exec babel-node ./src/bin/www",
"lint": "./node_modules/.bin/eslint ./src",
"pretty": "prettier --write '**/*.{js,json}' '!node_modules/**'",
"postpretty": "yarn lint --fix",
"test": "nyc --reporter=html --reporter=text --reporter=lcov mocha -r @babel/register"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"stripe": "^8.157.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.6",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.0.1",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"sinon-chai": "^3.7.0",
"supertest": "^6.1.3"
}
}