-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "WebXR.LINK",
"version": "1.0.0",
"description": "WebXR.LINK",
"main": "index.js",
"license": "MIT",
"author": "Integrated upon the shoulders of giants by Ben Erwin",
"scripts": {},
"devDependencies": {
"@babel/core": "^7.11.0",
"@gulp-sourcemaps/identity-map": "^2.0.1",
"autoprefixer": "^9.8.6",
"browser-sync": "^2.26.12",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.3",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-csso": "^4.0.1",
"gulp-notify": "^3.2.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify-es": "^2.0.0",
"jshint": "^2.12.0",
"stylish": "^1.0.0",
"uglify": "^0.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css,html}": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
],
"yarn.lock": [
"git rm --cached"
]
},
"dependencies": {
"chokidar": "^3.4.1"
}
}