-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
{
"name": "didarul-node-js-starter-kit",
"version": "0.3.0",
"description": "Starter Kit ES6 NODE JS",
"main": "dist",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src --presets es2015\"",
"build": "babel src -s -D -d dist --presets es2015",
"start": "babel src -s -D -d dist --presets es2015 && babel-node dist --presets es2015"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": "General Labs",
"author": "Didarul",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"define-properties": "^1.1.3",
"dotenv": "^6.2.0",
"express": "^4.13.3",
"is-symbol": "^1.0.3",
"jest": "^24.3.1",
"jsonwebtoken": "^8.3.0",
"knex": "^0.19.5",
"mongodb": "^3.1.8",
"mssql": "^6.0.1",
"node-cron": "^2.0.3",
"node-persist": "^3.0.5",
"prettier": "1.14.3",
"pretty-quick": "^1.8.0",
"pug": "^2.0.3",
"redis": "^2.8.0",
"resource-router-middleware": "^0.6.0",
"socket.io": "^2.4.0",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^4.18.2",
"nodemon": "^1.9.2"
}
}