-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "wgmobile",
"version": "1.0.0",
"description": "wgMobile RESTful API",
"main": "dist",
"scripts": {
"dev": "SET NODE_ENV=development && nodemon -w src --exec \"babel-node src --presets es2015,stage-0\"",
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"start": "SET NODE_ENV=production && pm2 start dist",
"prestart": "npm run -s build",
"lint": "wslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "https://github.com/Ercules76/mssql_nodejs_API.git"
},
"author": "MadAgos <sgrittino@me.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"mssql": "^3.3.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.17.1",
"nodemon": "^1.11.0"
},
"keywords": [
"express",
"es6",
"rest",
"api"
]
}