-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 974 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
{
"name": "compliance-tracker",
"version": "1.0.0",
"source": "src/js/index.js",
"main": "dist/bundle.js",
"license": "MIT",
"author": {
"name": "Russ Biggs",
"url": "https://russbiggs.com"
},
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build-css": "sass src/scss/main.scss dist/style.css --style compressed",
"build": "webpack",
"watch": "webpack --watch",
"deploy": "yarn run clean && yarn run build-css && yarn run build && cp index.html ./dist/index.html && cp data.json ./dist/data.json && cp -a static/. ./dist/"
},
"dependencies": {
"mitt": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.2.1",
"eslint": "^7.13.0",
"node-fetch": "^2.6.1",
"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"
}
}