-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
35
36
37
38
39
{
"name": "detroit-usability-survey",
"version": "alpha-0.0.0",
"description": "HTML custom element that renders a usability survey",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/CityOfDetroit/detroitmi-gov-survey.git"
},
"keywords": [
"Survey",
"Usability",
"JS"
],
"bugs": {
"url": "https://github.com/CityOfDetroit/detroitmi-gov-survey/issues"
},
"homepage": "https://github.com/CityOfDetroit/detroitmi-gov-survey#readme",
"scripts": {
"build": "yarn build:sass && yarn build:app",
"build:sass": "sass ./src/styles/scss/:./src/styles/css/ && ./scripts/postprocess_css.sh",
"build:app": "webpack --mode production",
"start": "webpack serve --mode development"
},
"dependencies": {
"bootstrap": "^5.0.0",
"html-webpack-plugin": "^5.6.0"
},
"devDependencies": {
"css-loader": "^7.1.2",
"raw-loader": "^4.0.2",
"sass": "^1.79.3",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}