-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.85 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
{
"name": "lharby.github.io",
"version": "1.0.0",
"description": "Repository for assets, scripts, css for Luke Harby",
"main": "index.js",
"scripts": {
"dev": "webpack && env NODE_ENV=development webpack -p",
"start": "webpack && env NODE_ENV=production webpack -p",
"server": "node webapp/src/server.js",
"all": "webpack --config webpack.config.js",
"test": "test",
"inject-css": "node ./src/server/injectCSS.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lharby/lharby.github.io.git"
},
"author": "Luke Harby",
"license": "ISC",
"bugs": {
"url": "https://github.com/lharby/lharby.github.io/issues"
},
"homepage": "https://github.com/lharby/lharby.github.io#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.23.2",
"@stripe/stripe-js": "^1.8.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"dotenv": "^16.0.1",
"dotenv-webpack": "^8.0.1",
"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.14.1",
"node-sass-glob-importer": "5.3.2",
"node-sass-json-importer": "^4.3.0",
"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": {
"express": "^4.21.1",
"http-server": "^0.12.3"
}
}