-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 735 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 735 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
{
"name": "on-system-client",
"version": "1.0.0",
"main": "index.js",
"author": "Max Base <maxbasecode@gmail.com>",
"private": true,
"license": "GPLV3",
"scripts": {
"ts": "yarn run tsc",
"b": "webpack",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"serve": "yarn run live-server"
},
"devDependencies": {
"eslint": "^7.32.0",
"live-server": "^1.2.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.49.1",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"path": "^0.12.7"
}
}