-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.1 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
40
{
"name": "tamato",
"author": "Department for International Trade",
"private": true,
"version": "0.1.0",
"description": "Tariff Management Tool",
"repository": "https://github.com/uktrade/tamato.git",
"licence": "MIT",
"engines": {
"node": "^16.8.0",
"npm": "^7.19.1"
},
"dependencies": {
"accessible-autocomplete": "^2.0.3",
"ansi-regex": "^6.0.1",
"chart.js": "^3.9.1",
"chartjs-adapter-moment": "^1.0.0",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"govuk-frontend": "^3.13.0",
"mini-css-extract-plugin": "^1.6.0",
"moment": "^2.29.4",
"sass": "^1.38.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"webpack": "^5.76.0",
"webpack-bundle-tracker": "^1.1.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"dev": "npx webpack-cli --config webpack.config.js --watch",
"build": "npx webpack-cli --config webpack.config.js --stats-children",
"clean": "rm -f ./run/static/webpack_bundles/*",
"heroku-prebuild": "",
"heroku-postbuild": "npm run build"
},
"devDependencies": {
"webpack-cli": "^4.7.2"
}
}