This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.77 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
55
56
{
"name": "web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"eslint-config-domdomegg": "^1.2.3",
"govuk-react": "^0.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"signature_pad": "^4.0.7",
"styled-components": "^5.3.5",
"typescript": "^5.4.5"
},
"devDependencies": {
"shx": "^0.3.4"
},
"scripts": {
"postinstall": "shx cp -n src/env/local.template.ts src/env/local.ts && shx cp -n src/env/local.ts src/env/env.ts",
"start": "npm run start:local",
"start:local": "cp src/env/local.ts src/env/env.ts && PORT=8000 react-scripts start",
"build": "npm run build:local",
"build:local": "cp src/env/local.ts src/env/env.ts && react-scripts build",
"build:dev": "cp src/env/dev.ts src/env/env.ts && react-scripts build",
"build:prod": "cp src/env/prod.ts src/env/env.ts && react-scripts build",
"test": "react-scripts test --watchAll=false",
"test:watch": "react-scripts test",
"eject": "react-scripts eject"
},
"homepage": ".",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}