-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
{
"name": "todo-server",
"version": "1.0.0",
"description": "Todo server",
"main": "index.js",
"engines": {
"node": "9.10.0"
},
"scripts": {
"heroku-postbuild": "npm install",
"clean": "rimraf build/",
"build": "npm run clean && babel src -d build",
"start": "npm run build && node build",
"dev": "nodemon --inspect -r dotenv/config -r babel-register src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bogutski/todo-server.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bogutski/todo-server/issues"
},
"homepage": "https://github.com/bogutski/todo-server#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^5.0.0-alpha.6",
"express-fileupload": "^1.1.6",
"lodash": "^4.17.11",
"mongoose": "^5.7.5",
"morgan": "^1.9.1"
},
"devDependencies": {
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"babel": "^6.23.0",
"babel-cli": "^7.0.0-beta.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^7.0.0-beta.3",
"babel-register": "^7.0.0-beta.3",
"dotenv": "^6.1.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"rimraf": "^2.6.2"
}
}