-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.17 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
{
"name": "discogs-visualizer",
"version": "2.0.0",
"description": "An app to visualize different data from discogs.com.",
"author": "Michael Päßler",
"scripts": {
"dev": "ts-node server/index.ts",
"build": "next build",
"start": "NODE_ENV=production ts-node server/index.ts",
"lint": "eslint",
"lintAll": "prettier --check . && next lint . --ext .js,.jsx,.ts,.tsx && stylelint **/*.scss && tsc --noEmit",
"testAll": "jest --all --coverage --verbose=true",
"prettier": "prettier --check .",
"stylelint": "stylelint **/*.scss",
"tsc": "tsc --noEmit"
},
"dependencies": {
"cors": "^2.8.5",
"disconnect": "^1.2.2",
"dotenv": "^16.4.5",
"dotenv-webpack": "^8.1.0",
"express": "^4.21.1",
"highcharts": "^11.4.8",
"identity-obj-proxy": "^3.0.0",
"next": "^15.0.2",
"nookies": "^2.5.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"sass": "^1.80.5"
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@eslint/js": "^9.13.0",
"@next/eslint-plugin-next": "^15.0.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"body-parser": "^1.20.2",
"classnames": "^2.5.1",
"eslint": "^9.13.0",
"eslint-config-next": "^15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}