-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.24 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
{
"name": "vanilla-javacript-boilerplate",
"version": "1.0.0",
"private": true,
"description": "A boilerplate of Vanilla-JavaScript, SCSS with Webpack 4",
"main": "index.js",
"scripts": {
"eslint": "eslint --fix 'src/**/*.js'",
"stylelint": "stylelint --fix 'src/**/*.scss'",
"format": "npm run eslint && npm run stylelint",
"json-server": "npx json-server --watch mockDB.json --port 3001",
"webpack-server": "npx webpack-dev-server --env.file=development --config webpack/dev.js",
"dev": "npm run json-server & npm run webpack-server",
"build:development": "npx webpack --env.file=development --config webpack/prod.js",
"build:staging": "npx webpack --env.file=staging --config webpack/prod.js",
"build:production": "npx webpack --env.file=production --config webpack/prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astatsuya/vanilla-javascript-boilerplate"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"autoprefixer": "^9.8.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"browserlist": "^1.0.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"dotenv-webpack": "^2.0.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"json-server": "^0.16.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.18.0",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.9"
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.6.5"
}
}