-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (32 loc) · 1.04 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
{
"name": "smart-casa",
"version": "1.2.0",
"main": "index.js",
"author": "Russ Biggs <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build-index": "node --experimental-fetch build-lunr-idx.js",
"start:dev": "webpack-dev-server --mode=development",
"build": "yarn run build-index && yarn run build-css && webpack --mode=production",
"build-css": "sass src/sass/base.scss dist/style.css --style compressed",
"clean": "if [ -d dist ]; then rm -rf dist; fi",
"move": "cp favicon.ico dist && cp lunr-index.json dist && cp -R static dist",
"deploy": "yarn run clean && yarn run build && yarn run move"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.2.1",
"eslint": "^7.13.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"sass": "^1.45.0",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"lunr": "^2.3.6"
}
}