-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1023 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
30
31
32
33
34
{
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/handlebars": "4.1.0",
"@types/node": "20.5.7",
"@types/prettier": "3.0.0",
"browser-sync": "2.29.3",
"chokidar": "^3.5.3",
"css-loader": "6.8.1",
"file-loader": "^6.2.0",
"handlebars": "4.7.8",
"mini-css-extract-plugin": "2.7.6",
"prettier": "3.0.3",
"style-loader": "3.3.3",
"ts-loader": "9.4.4",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"webpack": "5.88.2",
"webpack-cli": "5.1.4"
},
"scripts": {
"start-html": "npm run build-html -- --watch",
"start-webpack": "npx webpack --watch",
"build-webpack": "npx webpack",
"build-html": "npx ts-node ./build/run.ts",
"serve": "npx browser-sync start -c ./bs-config.js",
"build": "npm run build-webpack && npm run build-html",
"start": "npx concurrently 'npm run start-html' 'npm run start-webpack' 'npm run serve'"
},
"dependencies": {
"@prismicio/client": "^7.3.0",
"parallax-scroll": "^0.3.0"
}
}