-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 981 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 981 Bytes
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
{
"name": "luffy",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"dependencies": {
"koa": "^2.8.2",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-view": "^2.1.3",
"minimist": "^1.2.0",
"nunjucks": "^3.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"hard-source-webpack-plugin": "^0.13.1",
"nodemon": "^1.19.3",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2"
},
"scripts": {
"start": "node ./app/app.js",
"serve": "nodemon ./app/app.js --env dev",
"pre": "cd ./client/webpack && npm run build",
"dev": "cd ./client/webpack && npm run dev",
"analyze": "cd ./client/webpack && npm run build:analyze"
}
}