-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
108 lines (108 loc) · 3.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "threejs-es6-webpack-starter",
"description": "A starter project for Three.js with support for ES6 and Webpack 4",
"author": "jackdbd <[email protected]> (http://www.giacomodebidda.com/)",
"homepage": "https://jackdbd.github.io/threejs-es6-webpack-starter",
"repository": "[email protected]:jackdbd/threejs-es6-webpack-starter.git",
"version": "5.1.0",
"main": "./src/js/index.js",
"license": "MIT",
"private": true,
"engines": {
"node": ">=11.10.1"
},
"scripts": {
"build": "yarn prebuild && webpack --config ./config/webpack.prod.js",
"ci": "yarn test && yarn coverage && yarn build",
"coverage": "codecov",
"deploy": "gh-pages -d build",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "stylelint --config .stylelintrc.json --formatter verbose './src/**/*.css'",
"lint:js": "eslint 'src/**/*.{js,ts}' --fix --debug",
"ncu": "ncu",
"ncuu": "ncu --upgrade",
"nuke": "rimraf node_modules && rm yarn.lock",
"prebuild": "yarn lint",
"predeploy": "yarn test && yarn build",
"start": "webpack-dev-server --config ./config/webpack.dev.js",
"static": "chromium-browser build/index.html",
"stats": "webpack-bundle-analyzer build/stats.json --port 8888",
"test": "yarn test:unit",
"test:e2e": "concurrently \"yarn start\" \"yarn test:e2e:cli\" --kill-others",
"test:unit": "jest --verbose --no-cache",
"test:e2e:cli": "cypress run --browser chromium --key da1be047-979c-4b0f-bacf-fef804c7c6bb",
"test:e2e:dashboard": "cypress open",
"updtr": "updtr --use yarn --test-stdout",
"webhint": "hint https://jackdbd.github.io/threejs-es6-webpack-starter/",
"webhint:report": "python -m webbrowser ~/repos/threejs-es6-webpack-starter/hint-report/https-jackdbd-github-io-threejs-es6-webpack-starter/index.html"
},
"dependencies": {
"gltf-loader-ts": "0.3.1",
"orbit-controls-es6": "2.0.1",
"three": "0.113.2",
"three.interaction": "0.2.2"
},
"devDependencies": {
"@babel/core": "7.8.6",
"@babel/preset-env": "7.8.6",
"@hint/configuration-web-recommended": "8.0.2",
"@packtracker/webpack-plugin": "2.2.0",
"@testing-library/jest-dom": "5.1.1",
"babel-jest": "25.1.0",
"babel-loader": "8.0.6",
"circular-dependency-plugin": "5.2.0",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "3.1.0",
"concurrently": "5.1.0",
"css-loader": "3.4.2",
"cypress": "4.1.0",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"favicons-webpack-plugin": "2.1.0",
"file-loader": "4.2.0",
"gh-pages": "2.2.0",
"hint": "6.0.3",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"image-webpack-loader": "6.0.0",
"jest": "25.1.0",
"jest-cli": "25.1.0",
"jest-dom": "4.0.0",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.13.1",
"npm-check-updates": "4.0.2",
"optimize-css-assets-webpack-plugin": "5.0.3",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"sass-loader": "8.0.2",
"speed-measure-webpack-plugin": "1.3.1",
"style-loader": "1.1.3",
"stylelint": "13.2.0",
"stylelint-config-standard": "20.0.0",
"terser-webpack-plugin": "2.3.5",
"updtr": "3.1.0",
"webpack": "4.41.6",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-glsl-loader": "1.0.1",
"webpack-manifest-plugin": "2.2.0",
"webpack-merge": "4.2.2",
"worker-plugin": "3.2.0"
},
"keywords": [
"babel",
"boilerplate",
"es6",
"glsl",
"threejs",
"three.js",
"webpack",
"webgl"
],
"bugs": {
"url": "https://github.com/jackdbd/threejs-es6-webpack-starter/issues"
}
}