-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "@pixi/playground-client",
"version": "1.6.3",
"description": "Playground for exploring pixi code.",
"author": "Chad Engler <chad@pantherdev.com>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/englercj/playground#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/englercj/playground.git"
},
"bugs": {
"url": "https://github.com/englercj/playground/issues"
},
"scripts": {
"build": "npm run clean && webpack --progress",
"clean": "rimraf dist",
"dev": "webpack-dev-server",
"test": "echo 'No client tests yet!'"
},
"devDependencies": {
"@types/history": "^4.7.11",
"autoprefixer": "^10.4.18",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"cssnano": "^6.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"image-webpack-loader": "^8.1.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.8.1",
"monaco-editor-webpack-plugin": "^7.1.0",
"rimraf": "^5.0.5",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-stats-plugin": "^1.1.3"
},
"dependencies": {
"ajv": "^8.12.0",
"decko": "^1.2.0",
"history": "^4.10.1",
"linkstate": "^2.0.1",
"mini-signals": "^2.0.0",
"monaco-editor": "^0.46.0",
"normalize.css": "^8.0.1",
"preact": "^10.19.6",
"preact-render-to-string": "^6.4.0",
"preact-router": "^4.1.2"
}
}