-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
56
57
58
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"publish": "surge ./build",
"test": "jest",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/DanKomorny/bjs-gltf-viewer.git"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@babylonjs/core": "^4.1.0",
"@babylonjs/gui": "^4.1.0",
"@babylonjs/inspector": "^4.1.0",
"@babylonjs/loaders": "^4.1.0",
"@babylonjs/materials": "^4.1.0",
"@babylonjs/post-processes": "^4.1.0",
"@babylonjs/procedural-textures": "^4.1.0",
"@babylonjs/serializers": "^4.1.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@snowpack/app-scripts-svelte": "^1.1.4",
"@snowpack/plugin-babel": "^1.0.0",
"@snowpack/plugin-webpack": "^1.1.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"autoprefixer": "^9.8.0",
"cssnano": "^4.1.10",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"postcss-cli": "^7.1.1",
"prettier": "^2.0.5",
"rollup": "^2.13.1",
"snowpack": "^2.2.4",
"svelte": "^3.21.0",
"tailwindcss": "^1.4.6",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}