-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "todolist-backend",
"version": "0.0.1",
"description": "simple version of todolist",
"main": "dist",
"scripts": {
"ncu:i": "npm install --save-dev npm-check-updates",
"ncu:u": "ncu --upgrade",
"lint": "eslint **",
"lint:fix": "eslint ** --fix",
"dev": "cross-env NODE_ENV=development nodemon -w src --inspect --exec \"babel-node src --preset-env,stage-0\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -s -D -d dist --preset-env, stage-0",
"start": "cross-env NODE_ENV=production node dist/index.js",
"prestart": "npm run -s build",
"serve": "node dist/index.js"
},
"dependencies": {
"app-root-path": "^2.2.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"json-server": "^0.15.1",
"mongoose": "^5.7.4",
"mongoose-unique-validator": "^2.0.3",
"request-promise": "^4.2.4",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.3",
"babel-loader": "8.0.6",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-watch": "^6.0.1",
"nodemon": "^1.19.3",
"npm-check-updates": "^3.1.24",
"serve": "^11.2.0",
"webpack": "^4.41.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "https://github.com/arifdogru/todolist.git"
},
"keywords": [
"nodejs",
"expressjs",
"reactjs",
"redux",
"mongodb"
],
"author": "Arif Dogru",
"license": "MIT",
"bugs": {
"url": "https://github.com/arifdogru/todolist/issues"
},
"homepage": "https://github.com/arifdogru/todolist#readme"
}