-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "urlite-website",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build:windows": "rimraf dist/ && mkdir dist && copy src\\index.html dist\\ && yarn run build-css-js",
"build:unix": "rm -rf dist/ && mkdir dist && cp src/index.html dist/ && yarn run build-css-js",
"build-css-js": "webpack --config webpack.config.js -p --mode='production'",
"watch": "webpack-dev-server --config webpack.config.js --watch"
},
"dependencies": {
"spectre.css": "^0.5.9"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"css-loader": "^4.2.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mini-css-extract-plugin": "^0.11.0",
"node-sass": "^4.14.1",
"prettier": "^2.1.1",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}