-
-
Notifications
You must be signed in to change notification settings - Fork 220
/
package.json
87 lines (87 loc) · 3.34 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
{
"name": "remix-app",
"version": "1.10.10",
"license": "MIT",
"private": true,
"sideEffects": false,
"homepage": "https://github.com/belgattitude/nextjs-monorepo-example",
"repository": {
"type": "git",
"url": "https://github.com/belgattitude/nextjs-monorepo-example",
"directory": "apps/remix-app"
},
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"scripts": {
"build": "npm run build-css && remix build",
"build-css": "tailwindcss -o ./src/tailwind.css",
"dev": "npm-run-all --parallel --print-label watch-tailwind remix-dev",
"watch-tailwind": "tailwindcss -o ./src/tailwind.css --watch",
"remix-dev": "remix dev",
"clean": "rimraf --no-glob ./.cache ./coverage ./src/tailwind.css ./api/index.js ./api/index.js.map ./public/build ./tsconfig.tsbuildinfo",
"?share-static-symlink": "echo 'Use this command to link assets... from shared static folder'",
"share-static-symlink": "rimraf ./public/shared-assets && symlink-dir ../../static/assets ./public/shared-assets",
"?share-static-hardlink": "echo 'Use this command to link assets... from shared static folder'",
"share-static-hardlink": "rimraf ./public/shared-assets && syncdir ../../static/assets ./public/shared-assets --copy",
"test": "yarn test-unit",
"test-unit": "jest --config jest.config.js",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs,.mdx,.graphql --cache --cache-location ../../.cache/eslint/remix-app.eslintcache",
"lint-styles": "stylelint 'src/**/*.css'",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs,.mdx,.graphql --fix"
},
"dependencies": {
"@emotion/cache": "11.10.3",
"@emotion/react": "11.10.4",
"@emotion/server": "11.10.0",
"@emotion/styled": "11.10.4",
"@remix-run/node": "1.7.2",
"@remix-run/react": "1.7.2",
"@remix-run/serve": "1.7.2",
"@remix-run/vercel": "1.7.2",
"@vercel/node": "2.5.26",
"@your-org/common-i18n": "workspace:^",
"@your-org/core-lib": "workspace:^",
"@your-org/ui-lib": "workspace:^",
"react": "18.2.0",
"react-dom": "18.2.0",
"remix": "1.7.2"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@emotion/babel-plugin": "11.10.2",
"@remix-run/dev": "1.7.2",
"@remix-run/eslint-config": "1.7.2",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.2",
"@testing-library/dom": "8.19.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.2.0",
"@types/node": "18.11.2",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/testing-library__jest-dom": "5.14.5",
"@your-org/eslint-config-bases": "workspace:^",
"autoprefixer": "10.4.12",
"eslint": "8.25.0",
"get-tsconfig": "4.2.0",
"jest": "29.2.1",
"jest-css-modules-transform": "4.4.2",
"jest-environment-jsdom": "29.2.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.18",
"prettier": "2.7.1",
"stylelint": "14.14.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "29.0.0",
"tailwindcss": "3.1.8",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
}
}