-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "auction-backend",
"version": "1.0.0",
"description": "contains all auction apis",
"main": "index.js",
"scripts": {
"start": "nodemon server/bin/dev",
"clean": "rm -rf dist",
"build": "npm run clean && mkdir dist && babel server -s -d dist",
"production": "npm run build && node server/bin/prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/going-remote/auction-backend.git"
},
"author": "otitoju, lois, feranmi, 4mulaman, kondi",
"license": "ISC",
"bugs": {
"url": "https://github.com/going-remote/auction-backend/issues"
},
"homepage": "https://github.com/going-remote/auction-backend#readme",
"dependencies": {
"babel-watch": "^7.0.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"nodemon": "^2.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-vue": "^6.0.1"
}
}