-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.04 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
{
"name": "whistle.fplug",
"version": "1.1.1",
"description": "whistle plug",
"main": "index.js",
"scripts": {
"dev": "npm run build && w2 run",
"clean": "npx rimraf -rf index.js lib public router shared",
"webpack": "npx webpack --mode production --config ./webpack.config.js",
"build": "npm run clean && npx tsc --build ./src/server/tsconfig.json && npm run webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ke1992/whistle.FPlug.git"
},
"keywords": [
"whistle",
"plug"
],
"author": "Ke1992",
"license": "MIT",
"engines": {
"node": ">= 10.13.0"
},
"bugs": {
"url": "https://github.com/Ke1992/whistle.FPlug/issues"
},
"homepage": "https://github.com/Ke1992/whistle.FPlug#readme",
"devDependencies": {
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-static": "^4.0.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.1",
"@types/ws": "^7.2.3",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"autoprefixer": "^9.7.4",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.14.2",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"url-loader": "^3.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-static": "^5.0.0",
"lodash": "^4.17.15",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ws": "^7.2.3"
}
}