-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
81 lines (81 loc) · 3.01 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
{
"name": "web",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.13.2",
"yarn": ">=1.22.17"
},
"scripts": {
"build": "next build",
"dev:json-server": "json-server --watch db.json --port 3001",
"dev:web": "next dev",
"dev:web:debug": "NODE_OPTIONS='--inspect' next dev",
"dev": "concurrently npm:dev:json-server npm:dev:web",
"dev:debug": "concurrently npm:dev:json-server npm:dev:web:debug",
"start": "next start",
"commit": "cz",
"lint:css:fix": "yarn lint:css:prettier:fix && yarn lint:css:stylelint:fix",
"lint:css:prettier:fix": "yarn lint:css:prettier --write",
"lint:css:prettier": "prettier '**/*.css' --list-different --ignore-path .gitignore",
"lint:css:stylelint:fix": "yarn lint:css:stylelint --fix",
"lint:css:stylelint": "stylelint '**/*.css' --ignore-path .gitignore",
"lint:css": "run-s lint:css:stylelint lint:css:prettier",
"lint:fix": "run-p lint:js:fix lint:json:fix lint:css:fix ",
"lint:js:fix": "yarn lint:js --fix",
"lint:js": "eslint --cache --ignore-path .gitignore '**/*.js'",
"lint:json:fix": "yarn lint:json --write",
"lint:json": "prettier '**/!(db).json' --list-different --ignore-path .gitignore",
"lint": "run-p lint:js lint:json lint:css",
"test:coverage": "yarn test --coverage",
"test:coverage:html": "yarn test:coverage & open coverage/lcov-report/index.html",
"test:watch": "CONSOLE_LEVEL=debug yarn test --watch",
"testcafe:chrome": "testcafe chrome **/*.integration.test.js",
"test:integration": "NODE_ENV=test concurrently 'npm:dev:web' 'npm:testcafe:chrome'",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@auth0/nextjs-auth0": "1.9.1",
"@glrodasz/components": "2.12.1",
"@tanstack/react-query": "4.0.10",
"minireset.css": "0.0.7",
"next": "12.2.3",
"react": "18.2.0",
"react-beautiful-dnd": "13.1.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@svgr/webpack": "6.3.1",
"@tanstack/react-query-devtools": "4.0.10",
"@testing-library/react": "13.3.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.3.0",
"commitizen": "4.2.5",
"concurrently": "7.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-testcafe": "0.2.1",
"husky": "^8.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"json-server": "0.17.0",
"lint-staged": "13.0.3",
"next-transpile-modules": "9.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"sass": "1.54.0",
"stylelint": "14.9.1",
"stylelint-config-idiomatic-order": "8.1.0",
"stylelint-config-recommended": "8.0.0",
"testcafe": "1.20.0",
"testcafe-react-selectors": "5.0.2"
}
}