-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.04 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.04 KB
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
{
"name": "website-revision",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "node ./",
"build": "mmmc -b && sass ./static/css/ && tsc -b",
"watch:ts": "nodemon --watch 'src/**/*.ts' --ext ts --exec 'tsc -b'",
"watch:scss": "nodemon --watch 'static/css/**/*.scss' --ext scss --exec 'sass ./static/css/'",
"watch:mmm": "nodemon --watch 'static/*.mmm' --ext mmm --exec 'mmmc -b'",
"dev:server": "nodemon index.js",
"browser-sync": "browser-sync start --proxy 'http://localhost:3000' --files './static/**/*.*'",
"start": "concurrently \"npm:dev:server\" \"npm:watch:ts\" \"npm:watch:scss\" \"npm:watch:mmm\" \"npm:browser-sync\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"nodemon": "^3.0.1",
"browser-sync": "^2.29.3",
"concurrently": "^8.2.1",
"sass": "^1.63.6",
"triple-m": "^0.1.1",
"typescript": "^5.1.3"
}
}