This repository has been archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "arbeidsgiver-permittering",
"version": "0.1.0",
"private": true,
"homepage": "/arbeidsgiver-permittering",
"dependencies": {
"@craco/craco": "^6.1.1",
"@types/classnames": "^2.2.11",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"classnames": "^2.3.1",
"console-stamp": "^3.0.4",
"craco-less": "^1.16.0",
"cross-env": "^7.0.2",
"dayjs": "^1.10.4",
"eslint": "^7.20.0",
"express": "^4.17.1",
"helmet": "^5.0.2",
"html-react-parser": "^1.2.8",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^4.0.3",
"typescript": "^4.2.2"
},
"scripts": {
"start": "npm-run-all -p -r start-with-menu dev-server",
"start-with-menu": "cross-env ENABLE_EXTERNAL_MENU=true craco start ",
"start-plain": "craco start",
"build": "craco build",
"build-prod": "cross-env GIT_COMMIT_HASH=$(git log -n 1 --pretty=format:'%h') craco build",
"server": "node server/server.js",
"dev-server": "cross-env PORT=3001 nodemon server/server.js",
"test": "react-scripts test",
"test-ci": "CI=true react-scripts test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.3",
"@types/amplitude-js": "^7.0.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-collapse": "^5.0.0",
"@types/react-dom": "^17.0.1",
"@types/react-router": "^5.1.4",
"@types/react-router-dom": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"husky": "^4.2.3",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"pretty-quick": "^3.1.0",
"remove": "^0.1.5",
"yarn": "^1.22.10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(js|json|jsx|ts|tsx|css|scss|less)\""
}
}
}