-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "servewp",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "eslint src && npx babel src --out-dir dist",
"dev": "nodemon --watch src --exec \"eslint src && cross-env NODE_ENV=development babel-node src\"",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steffanhalv/servewp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/steffanhalv/servewp/issues"
},
"homepage": "https://github.com/steffanhalv/servewp#readme",
"dependencies": {
"compression": "^1.7.3",
"express": "^4.16.4"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/node": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/runtime": "^7.2.0",
"cross-env": "^5.2.0",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"nodemon": "^1.18.9",
"sqlite3": "^4.0.6"
}
}