-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.63 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
57
58
59
60
61
62
63
{
"name": "aframe-webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rm docs/bundle.js",
"build-dev": "webpack -d --mode development",
"build": "webpack -p --mode production",
"start:https": "webpack-dev-server --https --open --inline",
"start": "webpack-dev-server --open --inline",
"lint:js": "eslint --fix",
"lint:html": "tidy -config tidy_config.txt docs/*.html src/*.html",
"lint": "npm run lint:js src/**/*.js"
},
"dependencies": {
"aframe": "^1.0.4",
"aframe-environment-component": "^2.0.0",
"aframe-super-hot-html-loader": "^2.1.0",
"aframe-super-hot-loader": "^1.7.0",
"diff-dom": "^4.1.6",
"html-require-loader": "^1.0.1",
"lodash": "^4.17.19",
"regenerator-runtime": "^0.13.5",
"three-rounded-box": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.4",
"lodash-webpack-plugin": "^0.11.5",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-glsl-loader": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:js"
]
}
}