-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.8 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.8 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
33
34
{
"name": "planscore-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "webpack serve --config webpack.config.js --progress",
"build": "webpack --config webpack.config.js --mode=production --color --progress && cp WEBSITE_OUTPUT/index.html WEBSITE_OUTPUT/index-new.html",
"states": "for state in alabama alaska arizona arkansas california colorado connecticut delaware florida georgia hawaii idaho illinois iowa kansas kentucky louisiana maine maryland massachusetts michigan minnesota mississippi missouri montana nebraska nevada new_hampshire new_jersey new_mexico new_york north_carolina north_dakota ohio oklahoma oregon pennsylvania rhode_island south_carolina south_dakota tennessee texas utah vermont virginia washington west_virginia wisconsin wyoming indiana; do STATE_NAME=`echo $state | sed 's@_@ @g' | sed 's/\\(^\\| \\)\\([a-z]\\)/\\1\\u\\2/g'` ; cat _statetemplate/state_template.src.html | sed -e \"s@STATE_NAME@$STATE_NAME@g\" | sed -e \"s@STATE_SLUG@$state@g\" > $state/index.src.html ; cp _statetemplate/state_template.scss $state/index.scss ; cp _statetemplate/state_template.js6 $state/index.js6 ; done"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"tinycolor": "^0.0.1",
"tinygradient": "^0.3.1"
},
"devDependencies": {
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^1.6.0",
"node-sass": "^6.0.0",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^2.0.0",
"webpack": "5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}