-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "remix-example-basic",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "cross-env NODE_ENV=production remix build",
"dev": "cross-env NODE_ENV=development remix dev",
"postinstall": "remix setup node",
"start": "cross-env NODE_ENV=production remix-serve build",
"test": "vitest"
},
"dependencies": {
"@remix-run/react": "1.2.3",
"@remix-run/serve": "1.2.3",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"cross-env": "^7.0.3",
"graphql": "16.3.0",
"graphql-request": "4.1.0",
"msw": "0.39.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "1.2.3",
"vite-tsconfig-paths": "3.4.1",
"vitest": "0.6.0"
},
"devDependencies": {
"@remix-run/dev": "1.2.3",
"@remix-run/eslint-config": "1.2.3",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@vitejs/plugin-react": "^1.2.0",
"eslint": "^8.10.0",
"jsdom": "^19.0.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=14"
}
}