-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "bloup",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"license": "UNLICENSED",
"workspaces": [
"packages/*"
],
"scripts": {
"c:format": "prettier -c $INIT_CWD",
"c:format:fix": "prettier -w $INIT_CWD",
"c:lint:ci": "eslint $INIT_CWD",
"c:lint:fix": "eslint $INIT_CWD --cache --cache-location node_modules/.cache/.eslintcache --fix",
"c:pkg:deps": "syncpack syncpack lint-semver-ranges",
"c:pkg:deps:fix": "syncpack fix-mismatches",
"c:pkg:fix": "yarn c:pkg:deps:fix && yarn c:pkg:format",
"c:pkg:format": "syncpack format",
"c:test": "jest $INIT_CWD --cache --passWithNoTests",
"c:test:ci": "jest $INIT_CWD --cache --passWithNoTests --ci -i",
"c:test:watch": "jest $INIT_CWD --cache --passWithNoTests --watch",
"c:type": "cd $INIT_CWD && tsc -b",
"gen:tsconfig": "ts-node ${PROJECT_CWD}/scripts/generators/tsconfig.ts && prettier -w ${PROJECT_CWD}/**/tsconfig.json",
"x:ts-node": "cd $INIT_CWD && ts-node"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/eslint-parser": "7.18.9",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@graphql-eslint/eslint-plugin": "3.10.7",
"@jest/types": "28.1.3",
"@types/glob": "7.2.0",
"@types/jest": "28.1.6",
"@types/node": "18.7.4",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"babel-jest": "28.1.3",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.4.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unicorn": "43.0.2",
"glob": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jsdom": "20.0.0",
"prettier": "2.7.1",
"react": "18.2.0",
"syncpack": "8.2.4",
"ts-gql-plugin": "1.3.2",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependenciesMeta": {
"[email protected]": {
"built": true
}
},
"os": [
"linux"
]
}