-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.42 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
{
"name": "jh",
"version": "1.0.0",
"description": "JavaScript dependencies for jessicaharby.com",
"private": "true",
"main": "app.js",
"scripts": {
"dev": "webpack && env NODE_ENV=development webpack -p",
"start": "webpack && env NODE_ENV=production webpack -p",
"all": "webpack --config webpack.config.js",
"build": "webpack --config=webpack.config.prod.js",
"serve": "npx http-server"
},
"engine": "14.17.6",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-scss": "^3.17.1",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"node-sass-glob-importer": "^5.3.3",
"node-sass-json-importer": "^4.3.0"
}
}