-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 868 Bytes
/
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
{
"name": "starter-web-app",
"version": "0.0.9",
"description": "Starter template for HTML5 + JavaScript + Sass web app projects.",
"homepage": "https://github.com/shaunanoordin/starter-web-app/",
"author": "Shaun A. Noordin (https://www.shaunanoordin.com/)",
"main": "app/index.html",
"repository": {
"type": "git",
"url": "https://github.com/shaunanoordin/starter-web-app/"
},
"scripts": {
"start": "webpack && sass src:app && node server.js",
"dev": "concurrently \"webpack --watch\" \"sass --watch src:app\" \"node server.js\""
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"concurrently": "^7.6.0",
"express": "^4.18.2",
"sass": "^1.56.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": ">=14"
}
}