-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.8 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
{
"name": "pos-frontend",
"description": "Partio-ohjelmasovelluksen frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/browser": "6.11.0",
"@sentry/react": "6.19.7",
"@sentry/tracing": "6.19.7",
"dotenv": "^10.0.0",
"moment": "2.29.4",
"react": "17.0.2",
"react-accessible-accordion": "^3.3.5",
"react-dom": "17.0.2",
"react-feather": "2.0.10",
"react-infinite-scroll-component": "6.1.0",
"react-redux": "7.2.4",
"react-router-dom": "5.2.0",
"react-spring": "8.0.27",
"redux": "4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "2.3.0",
"striptags": "3.2.0",
"styled-components": "5.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/react": "12.0.0",
"env-cmd": "^10.1.0",
"eslint": "7.32.0",
"eslint-plugin-react": "7.31.8",
"husky": "^7.0.0",
"prettier": "2.3.2",
"pretty-quick": "3.1.3",
"react-scripts": "5.0.1",
"workbox-build": "6.5.4",
"workbox-cli": "6.5.4"
},
"scripts": {
"dev": "HTTPS=true SSL_CRT_FILE=certs/server.crt SSL_KEY_FILE=certs/server.key npm start",
"start": "env-cmd -f .env react-scripts start",
"build": "env-cmd -f .env react-scripts build && yarn service-worker",
"service-worker": "workbox copyLibraries build/workbox 6& yarn update-sw",
"update-sw": "workbox injectManifest workbox.config.js",
"test": "react-scripts test --verbose",
"lint": "eslint src",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}