This repository has been archived by the owner on Nov 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.52 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "controlpanel",
"version": "0.1.0",
"description": "Analytical Platform Control Panel",
"repository": "https://github.com/ministryofjustice/analytics-platform-control-panel.git",
"license": "MIT",
"dependencies": {
"@ministryofjustice/frontend": "^0.0.17-alpha",
"accessible-autocomplete": "^2.0.4",
"core-js": "^3.26.1",
"govuk-frontend": "^3.0.0",
"html5shiv": "^3.7.3",
"jquery": "^3.6.1",
"jquery-ui": "^1.13.2",
"sass": "^1.56.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/plugin-transform-regenerator": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@testing-library/jest-dom": "^5.16.5",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdom-simulant": "^1.1.2",
"npm-run-all": "^4.1.5"
},
"scripts": {
"css": "sass --load-path=node_modules/ --style=compressed controlpanel/frontend/static/app.scss:static/app.css",
"watch:css": "npm run css && npm run css -- --source-map true --source-map-embed true --watch",
"watch:babel": "npm run babel && npm run babel -- -w",
"watch": "npm-run-all --parallel watch:*",
"test": "jest"
},
"babel": {
"ignore": [
"**/*.test.js"
],
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": 2
}
]
],
"plugins": [
"@babel/plugin-transform-regenerator"
]
}
}