-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "pilotjs-project",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">=14.6.0"
},
"scripts": {
"lint": "pnpm lint:eslint && pnpm lint:language && pnpm lint:style",
"lint:eslint": "eslint . --ext js,jsx,ts,tsx --max-warnings=0 --config .eslintrc.json --no-eslintrc",
"lint:language": "alex .",
"lint:style": "prettier --write .",
"publish:canary": "pnpm lint && turbo run build && changeset publish --tag canary",
"publish:next": "pnpm lint && turbo run build && changeset publish --tag next",
"publish:release": "pnpm lint && turbo run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Wave-Play/pilot.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"author": "WavePlay <[email protected]> (waveplay.com)",
"contributors": [
"Pkmmte Xeleon <[email protected]>"
],
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"alex": "11.0.0",
"eslint": "8.27.0",
"eslint-mdx": "2.0.5",
"eslint-plugin-eslint-plugin": "^5.0.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-mdx": "2.0.5",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.7.1",
"turbo": "1.6.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@changesets/cli": "2.25.2"
}
}