-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.71 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
{
"name": "arjs-webpack5-boilerplate",
"version": "1.0.0",
"description": "A static website boilerplate for ThreeJS + ARJS projects managed via Webpack5.",
"main": "index.js",
"author": "Yann Klein",
"license": "MIT",
"scripts": {
"start": "yarn && cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "yarn && cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"open-gh": "gh repo view -w || echo 'Oops, looks like you don't have GH CLI, install it from: https://github.com/cli/cli 😎 ",
"create-gh-pages": "git branch gh-pages -f && git push origin gh-pages -f && gh-pages -d dist && gh repo view -w",
"deploy": "yarn build && yarn create-gh-pages && yarn open-gh && echo 'Deployed successfully 🚀'"
},
"keywords": [
"webpack",
"webpack 5",
"webpack boilerplate"
],
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.2",
"css-loader": "^5.0.0",
"css-minimizer-webpack-plugin": "^1.1.5",
"html-webpack-plugin": "^5.0.0-alpha.7",
"mini-css-extract-plugin": "^1.0.0",
"node-sass": "^4.14.1",
"postcss-loader": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"repository": {
"type": "git",
"url": "[email protected]:yannklein/arjs-webpack-boilerplate"
},
"dependencies": {
"gh-pages": "^3.1.0"
}
}