-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.7 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
82
83
84
85
86
87
88
89
90
91
{
"name": "knitnotebook",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "remix vite:build",
"clean": "rm -rf node_modules && rm -rf package-lock.json && npm install",
"dev": "open https://localhost:3000 && node server.js",
"lint": "eslint app/ ",
"lint:fix": "eslint app/ --fix",
"test": "echo 'test environment is not yet set up properly'",
"test-not-working": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "cross-env NODE_ENV=production node ./server.js",
"prepare": "node .husky/install.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@babel/runtime": "^7.25.6",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/cache": "^11.13.1",
"@emotion/css": "^11.13.0",
"@emotion/react": "^11.13.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@remix-run/css-bundle": "^2.11.2",
"@remix-run/express": "^2.11.2",
"@remix-run/node": "^2.11.2",
"@remix-run/react": "^2.11.2",
"axios": "^1.7.4",
"cross-env": "^7.0.3",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.19.2",
"http-proxy-middleware": "^3.0.0",
"isbot": "^4.4.0",
"js-cookie": "^3.0.5",
"mdi-material-ui": "^7.9.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"remix-auth": "^3.7.0",
"remix-auth-oauth2": "^2.3.0",
"remix-utils": "^7.6.0",
"use-debounce": "^10.0.3"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.9.0",
"@jest/globals": "^29.7.0",
"@remix-run/dev": "^2.11.2",
"@remix-run/eslint-config": "^2.11.2",
"@remix-run/testing": "^2.11.2",
"@testing-library/jest-dom": ">=5.16.0",
"@testing-library/react": ">=12.0.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.9",
"react-test-renderer": "^18.3.1",
"ts-jest": "^29.2.5",
"vite": "^5.4.1"
},
"lint-staged": {
"*.{js,jsx}": [
"suppress-exit-code eslint app/ --fix",
"git add"
]
},
"engines": {
"npm": "10.8.1",
"node": "20.16.0"
}
}