-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.8 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.8 KB
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
{
"name": "@casual-simulation/aux-ui-example",
"version": "1.0.0",
"description": "A starter kit for writing custom AUX UIs",
"private": true,
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"test": "jest",
"build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casual-simulation/aux-ui-example.git"
},
"author": "Kallyn Gowdy <kal@casualsimulation.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/casual-simulation/aux-ui-example/issues"
},
"homepage": "https://github.com/casual-simulation/aux-ui-example#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@types/uuid": "^7.0.2",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"worker-loader": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@casual-simulation/aux-common": "^1.2.19",
"@casual-simulation/aux-vm": "^1.2.19",
"@casual-simulation/aux-vm-browser": "^1.2.19",
"rxjs": "^6.5.5",
"uuid": "^7.0.3"
}
}