-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "three-typescript-starter",
"version": "1.0.0",
"description": "three.js + typescript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack serve --inline --progress --open --config ./webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.js",
"eslint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "Jeff.fu",
"license": "MIT",
"homepage": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"cross-env": "^7.0.3",
"css-loader": "latest",
"eslint": "latest",
"eslint-config-airbnb-typescript": "latest",
"eslint-plugin-import": "latest",
"html-webpack-plugin": "latest",
"mocker-api": "^2.8.3",
"progress-bar-webpack-plugin": "latest",
"style-loader": "latest",
"ts-loader": "latest",
"typescript": "latest",
"webpack": "latest",
"webpack-cli": "latest",
"webpack-dev-server": "latest"
},
"dependencies": {
"@types/three": "^0.125.1",
"three": "^0.125.1",
"axios": "^0.21.1"
}
}