-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 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
50
51
52
53
54
55
56
57
{
"private": true,
"name": "js_pro_fullstack",
"description": "",
"license": "",
"type": "commonjs",
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"lint": "eslint app",
"format": "prettier --write app",
"postinstall": "remix setup node",
"start": "remix-serve build",
"test": "jest",
"test-pr": "jest"
},
"dependencies": {
"@remix-run/react": "^1.1.3",
"@remix-run/serve": "^1.1.3",
"cypress": "^12.2.0",
"isbot": "^3.6.5",
"react": "~18.0.0",
"react-dom": "^18.0.0",
"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",
"autoprefixer": "^10.4.13",
"babel-jest": "^27.4.6",
"concurrently": "^7.6.0",
"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",
"postcss": "^8.4.20",
"prettier": "2.5.1",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}