-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
54 lines (54 loc) · 1.68 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": "puerts-starter-kit",
"author": "Geequlim",
"license": "BSD",
"scripts": {
"bundle:dev": "webpack --config webpack.config.js --watch --env esbuild=true",
"bundle:webapi": "webpack --config webpack.config.js --watch --env entry=webapi esbuild=true",
"bundle:publish": "webpack --config webpack.config.js --env production=true",
"bundle:analyze": "webpack --config webpack.config.js --env production=true analyze=true",
"test": "webpack --config webpack.config.js --watch --env entry=test esbuild=true"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@types/node": "^20.5.9",
"@types/uglify-js": "^3.17.2",
"@types/url-parse": "^1.4.9",
"@types/uuid": "^9.0.3",
"@types/whatwg-mimetype": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"buffer": "^6.0.3",
"esbuild": "^0.19.2",
"esbuild-loader": "^4.0.2",
"eslint": "^8.51.0",
"esm-hook": "^0.1.4",
"fast-glob": "^3.3.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"http-server": "^14.1.1",
"performance-now": "^2.1.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.4",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"util": "^0.12.5",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0",
"webpackbar": "^5.0.2"
},
"dependencies": {
"http-status-codes": "^2.2.0",
"js-yaml": "^4.1.0",
"mime": "^3.0.0",
"query-string": "^8.1.0",
"querystring": "^0.2.1",
"snappyjs": "^0.7.0",
"url-parse": "^1.5.10",
"whatwg-mimetype": "^3.0.0",
"yaml-loader": "^0.8.0"
}
}