-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.3 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
91
92
93
94
95
96
97
{
"name": "shell-react",
"version": "0.0.5",
"private": true,
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"eventemitter3": "",
"import-dir": "",
"koa": "",
"koa-bodyparser": "",
"koa-compose": "",
"koa-compress": "",
"koa-etag": "",
"koa-favicon": "",
"koa-helmet": "",
"koa-logger": "",
"koa-router": "",
"koa-static": "",
"koa2-cors": "",
"lokijs": "",
"most": "",
"page": "",
"primus": "",
"react": "",
"react-dom": "",
"react-hyperscript": "",
"superagent": "",
"validator": "",
"webfontloader": ""
},
"devDependencies": {
"@babel/core": "",
"@babel/plugin-proposal-class-properties": "",
"@babel/plugin-proposal-object-rest-spread": "",
"@babel/plugin-proposal-decorators": "",
"@babel/polyfill": "",
"@babel/preset-env": "",
"@babel/register": "",
"babel-loader": "",
"css-loader": "",
"file-loader": "",
"less": "",
"less-loader": "",
"less-plugin-autoprefix": "",
"less-plugin-clean-css": "",
"nodemon": "",
"pug": "",
"style-loader": "",
"svgo": "",
"svg-sprite-loader": "",
"svgo-loader": "",
"webpack": "",
"webpack-cli": "",
"webpack-dev-server": ""
},
"babel": {
"compact": true,
"presets": [
[
"@babel/preset-env",
{
"loose": true,
"targets": {
"node": "current"
}
}
]
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
"@babel/plugin-proposal-object-rest-spread"
]
},
"scripts": {
"pm2": "pm2 strtOrReload--env production .etc/pm2.yml",
"api": "nodemon --config .etc/nodemon.json ./.etc/server.js",
"prod": "webpack-cli --config .etc/prod.babel.js",
"dev": "webpack-dev-server --config .etc/dev.babel.js",
"dll": "webpack-cli --config .etc/dll.babel.js",
"svgo": "svgo -f ./static/svg --config=./.etc/svgo.yml"
}
}