-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "@timkurvers/dota2-model-viewer",
"author": "Tim Kurvers <[email protected]>",
"repository": "github:timkurvers/dota2-model-viewer",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "webpack build",
"build:clean": "rm -f public/{index.html,dota2*}",
"lint": "eslint .",
"screenshot": "node bin/screenshot.js",
"start": "node bin/pipeline.js",
"start:dev": "WEBPACK_MIDDLEWARE=true nodemon --ignore src/web --ext js,cjs npm run start"
},
"dependencies": {
"dat.gui": "^0.7.7",
"debug": "^4.3.2",
"express": "^4.17.3",
"mobx": "^6.1.4",
"morgan": "^1.10.0",
"puppeteer": "^13.5.1",
"three": "^0.133.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@timkurvers/eslint-config": "^2.1.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"nodemon": "^2.0.20",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-middleware": "^4.1.0"
}
}