-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.04 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
{
"private": true,
"scripts": {
"release": "changeset publish",
"preinstall": "npx only-allow pnpm",
"clean": "nx run-many --target=clean --all --skip-nx-cache && nx reset",
"lint": "nx run-many --target=lint --all --skip-nx-cache",
"lint:affected": "nx affected --target=lint --all",
"lint:fix": "nx run-many --target=lint:fix --all --skip-nx-cache",
"lint:fix:affected": "nx affected --target=lint:fix --all",
"test": "nx run-many --target=test --all --skip-nx-cache",
"watch": "nx affected --target=watch --base=main --head=HEAD --skip-nx-cache",
"test:affected": "nx affected --target=test --all",
"test:watch": "nx run-many --target=test:watch --all --skip-nx-cache",
"tsc": "nx run-many --target=tsc --all --skip-nx-cache",
"tsc:affected": "nx affected --target=tsc --all",
"build": "nx run-many --target=build --all --skip-nx-cache",
"build:affected": "nx affected --target=build --all",
"graph": "nx graph",
"postinstall": "patch-package && remix setup node"
},
"type": "commonjs",
"dependencies": {
"@oclif/core": "1.3.4",
"@oclif/plugin-help": "^5",
"@remix-run/react": "^1.2.3",
"@remix-run/serve": "^1.2.3",
"cross-env": "^7.0.3",
"execa": "^6.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.2.3",
"tempy": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@changesets/cli": "^2.21.1",
"@milahu/patch-package-with-pnpm-support": "^6.4.8",
"@nrwl/cli": "latest",
"@nrwl/remix": "^13.7.1",
"@nrwl/tao": "latest",
"@nrwl/workspace": "latest",
"@remix-run/dev": "^1.2.3",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.14",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/rimraf": "^3.0.2",
"@types/shelljs": "^0.8.11",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"esbuild": "^0.14.11",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"fast-glob": "^3.2.10",
"fs-extra": "^10.0.0",
"install": "^0.13.0",
"pathe": "^0.2.0",
"picocolors": "^1.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.66.1",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-strip-shebang": "^1.2.10",
"rollup-plugin-ts": "^2.0.5",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"tmp": "^0.2.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"vitest": "^0.2.8",
"webpack": "^5.70.0"
}
}