-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
90 lines (90 loc) · 3.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cplayground",
"version": "0.0.1",
"description": "",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"ace-builds": "^1.4.8",
"async-mutex": "^0.3.1",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"bufferutil": "^4.0.1",
"classnames": "^2.2.6",
"console-stamp": "^0.2.9",
"css-element-queries": "^1.2.3",
"express": "^4.17.1",
"gdb-js": "^1.3.0",
"jointjs": "^3.1.1",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"mysql-migrations": "^1.0.6",
"node-pty": "^0.10.0",
"react": "^16.13.1",
"react-ace": "^8.1.0",
"react-dom": "^16.13.1",
"react-fast-compare": "^3.0.1",
"regenerator-runtime": "^0.13.5",
"semver": "^7.1.3",
"socket.io": "^2.3.0",
"source-map-support": "^0.5.16",
"string-argv": "^0.3.0",
"url-parse": "^1.4.7",
"utf-8-validate": "^5.0.2",
"uuid": "^3.4.0",
"webpack-cli": "^3.3.11",
"xterm": "^4.4.0",
"xterm-addon-fit": "^0.2.1",
"xterm-addon-web-links": "^0.2.1",
"xterm-webfont": "^2.0.0"
},
"scripts": {
"lint": "eslint src --ext js --ext jsx --ext ts --ext tsx",
"build-server": "tsc",
"build-client": "webpack",
"build": "tsc && webpack",
"watch-client": "webpack --watch",
"serve": "tsc && node ./dist/server/index.js",
"serve-debug": "tsc && node --inspect ./dist/server/index.js"
},
"devDependencies": {
"@svgr/webpack": "^5.3.0",
"@types/backbone": "^1.4.1",
"@types/classnames": "^2.2.10",
"@types/console-stamp": "^0.2.32",
"@types/express": "^4.17.3",
"@types/multer": "^1.4.2",
"@types/mysql": "^2.15.9",
"@types/node": "12.12.22",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/semver": "^7.1.0",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/source-map-support": "^0.5.1",
"@types/url-parse": "^1.4.3",
"@types/uuid": "^3.4.8",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^3.0.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"react-hot-loader": "^4.12.20",
"sass-loader": "^7.3.1",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0"
}
}