This repository has been archived by the owner on Nov 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"private": true,
"sideEffects": [
"*.css"
],
"name": "sls",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "npm run clean && webpack --config ./webpack.config.js --mode production",
"dev": "npm run clean && webpack --config ./webpack.config.js --mode development",
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"start:ws": "node ws.js",
"clean": "rimraf ./dist",
"deploy": "gh-pages -d dist"
},
"eslintIgnore": [
"dist/*"
],
"dependencies": {
"@types/d3": "^5.7.2",
"@types/luaparse": "^0.2.6",
"@types/notyf": "^3.0.0",
"notyf": "^3.7.0",
"pubsub-ts": "^0.2.0",
"unistore": "^3.5.1"
},
"devDependencies": {
"@teamsupercell/typings-for-css-modules-loader": "^2.2.0",
"@types/classnames": "^2.2.10",
"@types/codemirror": "0.0.95",
"@types/lodash": "^4.14.155",
"@types/reconnectingwebsocket": "^1.0.4",
"@types/superagent": "^4.1.7",
"@types/webpack-env": "^1.15.2",
"@types/ws": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"classnames": "^2.2.6",
"compression-webpack-plugin": "^4.0.0",
"connect-api-mocker": "^1.9.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-preact": "^1.1.1",
"eslint-plugin-preact": "^0.1.0",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"gh-pages": "^3.0.0",
"html-webpack-plugin": "^4.3.0",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.9.0",
"preact": "^10.4.4",
"preact-habitat": "^3.3.0",
"reconnecting-websocket": "^4.4.0",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0",
"ws": "^7.3.0"
}
}