This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.56 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
{
"name": "oswee",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.13"
},
"devDependencies": {
"@bazel/bazelisk": "^1.7.3",
"@bazel/buildifier": "latest",
"@bazel/ibazel": "^0.14.0",
"@bazel/labs": "^2.3.1",
"@bazel/typescript": "^2.3.0",
"@types/html-webpack-plugin": "^3.2.4",
"@types/node": "^14.14.8",
"@types/webpack": "^4.41.25",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chalk": "^4.1.0",
"css-loader": "^5.0.1",
"escodegen": "^2.0.0",
"eslint": "^7.13.0",
"espree": "^7.3.0",
"estraverse": "^5.2.0",
"glob": "^7.1.6",
"google-protobuf": "^3.14.0",
"html-webpack-plugin": "^5.0.0-alpha.14",
"jsdoc": "^3.6.6",
"lit-element": "^2.4.0",
"minimist": "^1.2.5",
"protobufjs": "^6.10.2",
"protoc-gen-ts": "^0.3.4",
"semver": "^7.3.2",
"style-loader": "^2.0.0",
"tmp": "^0.2.1",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"tslib": "^2.0.3",
"typescript": "^4.1.2",
"uglify-es": "^3.3.9",
"uglify-js": "^3.12.0",
"webpack": "^5.5.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"build": "bazel build //...",
"test": "bazel test //...",
"start": "webpack serve --config ./webpack.dev.ts",
"clean": "bazel clean --expunge && rm -rf node_modules"
}
}