forked from webkom/kvittering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "kvittering",
"version": "1.0.0",
"license": "MIT",
"description": "Kvittering Webapp",
"author": "web",
"repository": {
"type": "git",
"url": "github.com/itdagene-ntnu/kvittering"
},
"scripts": {
"dev": "NODE_ENV=development next dev webapp",
"build": "NODE_ENV=production next build webapp",
"export": "NODE_ENV=production next export webapp",
"start": "next start webapp",
"lint": "yarn run prettier:check && yarn run eslint",
"prettier:check": "prettier --check 'webapp/**/*.{ts,tsx,css,html}' --ignore-path .dockerignore",
"prettier:write": "prettier --write 'webapp/**/*.{ts,tsx,css,html}' --ignore-path .dockerignore",
"eslint": "eslint 'webapp/**/*.{ts,tsx}' --ignore-path .dockerignore",
"cypress": "cypress open",
"cypress:ci": "yarn build && concurrently \"yarn start\" \"cypress run --record\" --kill-others --success first"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.90",
"@mui/material": "^5.9.0",
"next": "^12.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.15.1",
"react-signature-canvas": "^1.0.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.2.2",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-modal": "^3.13.1",
"@types/react-signature-canvas": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"concurrently": "^7.2.2",
"cypress": "^10.3.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}