-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "prototype-name",
"description": "Prototype",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^16 || ^18"
},
"prototype": {
"serviceName": "Your service name",
"defaultRigLayout": "layouts/default.html",
"defaultUnbrandedLayout": "layouts/unbranded.html"
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
},
"scripts": {
"build-assets": "rollup --config --silent",
"watch-assets": "rollup --config --silent --watch",
"serve": "nhsuk-prototype-rig",
"start": "npm-run-all --serial build-assets serve",
"dev": "npm-run-all --parallel watch-assets serve",
"lint": "standard && stylelint 'app/**/*.scss'"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"nhsuk-prototype-rig": "^0.0.5",
"luxon": "^3.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^3.18.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.58.3"
},
"devDependencies": {
"standard": "^17.0.0",
"stylelint": "^14.14.1",
"stylelint-config-gds": "^0.2.0"
}
}