-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.94 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
{
"name": "kvittering",
"version": "1.0.0",
"license": "MIT",
"description": "Kvittering Webapp",
"author": "webkom",
"repository": {
"type": "git",
"url": "github.com/webkom/kvittering"
},
"scripts": {
"dev": "NODE_ENV=development next dev webapp",
"build": "NODE_ENV=production next build webapp",
"export": "NODE_ENV=production next export webapp",
"start": "npx serve webapp/out",
"lint": "yarn run prettier:check && yarn run eslint",
"prettier:check": "prettier --check 'webapp/**/*.{ts,tsx,css,html,md}' --ignore-path .dockerignore",
"prettier:write": "prettier --write 'webapp/**/*.{ts,tsx,css,html,md}' --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.11.4",
"@emotion/styled": "^11.11.5",
"@nextui-org/react": "^2.6.8",
"final-form": "^4.20.10",
"framer-motion": "^11.11.8",
"next": "^14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-icons": "^5.0.1",
"react-signature-canvas": "^1.0.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.3.0",
"@types/node": "^20.14.12",
"@types/react": "^18.2.79",
"@types/react-modal": "^3.13.1",
"@types/react-signature-canvas": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cypress": "^13.15.1",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.6.3"
}
}