-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.21 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "kjam",
"version": "1.6.11",
"license": "MIT",
"scripts": {
"start": "nx affected:test --all --parallel --maxParallel 10 --watch",
"build": "nx run-many --target=build --all=true",
"test": "nx test",
"format": "nx format:write",
"lint": "clear && npx eslint --fix packages/**/*.{ts,tsx}",
"clean": "rm -rf ./tmp && rm -rf ./dist && rm -rf ./node_modules/.cache/nx",
"prepare": "husky install",
"test-action-next": "nx run action-next:build && KJAM_GIT=amicidellaschola/content-www/main KJAM_FOLDER=../../LaSchola/content-www KJAM_SKIP_GIT=true node ./dist/packages/action-next/index.js",
"test-cli": "nx run cli:build && KJAM_GIT=amicidellaschola/content-www/main KJAM_FOLDER=../../LaSchola/content-www node ./dist/packages/cli watch",
"link": "cd ./dist/packages/cli && npm link && cd ../core && npm link && cd ../next && npm link && cd ../next-ui && npm link"
},
"private": true,
"dependencies": {
"@actions/core": "^1.9.1",
"@babel/code-frame": "^7.18.6",
"@mdx-js/mdx": "^2.1.3",
"@mdx-js/react": "^2.1.3",
"@nrwl/nx-cloud": "^14.6.2",
"chokidar": "^3.5.3",
"commander": "^9.4.0",
"core-js": "^3.25.3",
"fdir": "^5.2.0",
"fs-extra": "^10.1.0",
"get-port": "^6.1.2",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"next": "^12.3.1",
"next-translate": "^1.6.0",
"probe-image-size": "^7.2.3",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"regenerator-runtime": "^0.13.9",
"serve-handler": "^6.1.3",
"simple-git": "^3.14.1",
"tslib": "^2.4.0",
"unist-util-remove": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-angular": "^17.1.0",
"@commitlint/config-conventional": "^17.1.0",
"@e-square/nx-ncc": "^1.1.0",
"@nrwl/cli": "^14.7.17",
"@nrwl/eslint-plugin-nx": "^14.7.17",
"@nrwl/jest": "^14.7.17",
"@nrwl/js": "^14.7.17",
"@nrwl/linter": "^14.7.17",
"@nrwl/node": "^14.7.17",
"@nrwl/react": "^14.7.17",
"@nrwl/web": "^14.7.17",
"@nrwl/workspace": "^14.7.17",
"@swc/core": "^1.3.3",
"@types/babel__code-frame": "^7.0.3",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.0.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.7.23",
"@types/probe-image-size": "^7.2.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/serve-handler": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^29.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.2",
"typescript": "^4.8.4"
},
"optionalDependencies": {
"fsevents": "x.x.x"
},
"workspaces": [
"packages/**"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,ts,tsx}": [
"prettier --write"
],
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}