-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 2.25 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
{
"name": "voxel-editor",
"version": "1.0.0",
"description": "![now](./now.png) Web上でVoxelの編集が出来るサービスを作ろうと思っています。 ## 現状 カメラの回転が出来る 色が変更出来る ファイルの読み書きが出来る ## 次の課題 undo/redoの実装 キューブの透過度を有効にする 他のユーザの作品を共有する ## contributors 募集 一緒に作っていただける方を募集します。 使い心地をためしてIssuesに起票していただけるだけでも、ありがたいです。",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "webpack-dev-server --mode development --env.environment development",
"build": "npm run webpack:dev",
"build:stg": "npm run webpack:stg",
"build:prd": "npm run webpack:prd",
"webpack:dev": "webpack --mode development --env.environment development",
"webpack:stg": "webpack --mode development --env.environment staging",
"webpack:prd": "webpack --mode production --env.environment production",
"lint": "eslint ./src/*.js ./gulpfile.babel.js/* ./*.js",
"lint:fix": "eslint --fix ./src/*.js ./gulpfile.babel.js/* ./*.js",
"clean": "gulp clean",
"check-updates": "ncu && npm audit",
"clean-install": "rm -rf node_modules/ && rm -rf ~/.npm && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minmin0530/voxel-editor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/minmin0530/voxel-editor/issues"
},
"homepage": "https://github.com/minmin0530/voxel-editor#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"gulp": "^4.0.2",
"html-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-plugins": "^3.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"core-js": "^3.6.4",
"npm-check-updates": "^4.0.4",
"three": "^0.125.0"
}
}