-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.78 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
{
"private": true,
"name": "tgui-standalone",
"version": "0.0.1",
"workspaces": [
"./packages/*"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"start": "webpack serve --open",
"build": "webpack ",
"lint": "tslint src/*.ts{,x} src/**/*.ts{,x}"
},
"dependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-jscript": "^7.12.13",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.16.3",
"@types/jest": "^26.0.22",
"@types/jsdom": "^16.2.10",
"@types/node": "^14.14.41",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-inferno": "^6.2.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"clean-webpack-plugin": "^3.0.0",
"common": "workspace:*",
"core-js": "^3.10.1",
"css-loader": "^5.2.2",
"file-loader": "^6.2.0",
"inferno": "^7.4.8",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jsdom": "^16.5.3",
"regenerator-runtime": "^0.13.8",
"sass": "^1.33.8",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"typescript": "^4.2.4",
"url-loader": "^4.1.1"
},
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "^7.24.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-react": "^7.23.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^1.6.2",
"nodemon": "2.0.12",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.33.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.4.0"
}
}