-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"type": "commonjs",
"scripts": {
"build": "remix build",
"dev": "remix dev",
"lint": "eslint app",
"format": "prettier --write app",
"postinstall": "remix setup node",
"start": "remix-serve build",
"test": "jest --watch",
"test-pr": "jest"
},
"dependencies": {
"@remix-run/react": "^1.1.3",
"@remix-run/serve": "^1.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.3"
},
"devDependencies": {
"@remix-run/dev": "^1.1.3",
"@remix-run/eslint-config": "^1.1.3",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"alias-hq": "^5.3.2",
"babel-jest": "^27.4.6",
"esbuild-jest": "^0.5.0",
"eslint": "^8.8.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-testing-library": "^5.0.5",
"jest": "^27.4.7",
"prettier": "2.5.1",
"react-test-renderer": "^17.0.2",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}