-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.73 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
{
"name": "ivy",
"version": "0.0.0",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "^20.0.0"
},
"repository": "[email protected]:austinbiggs/ivy.git",
"author": "Austin Biggs <[email protected]>",
"private": true,
"scripts": {
"affected": "nx affected",
"affected:apps": "nx affected:apps",
"affected:build": "nx affected:build",
"affected:dep-graph": "nx affected:dep-graph",
"affected:libs": "nx affected:libs",
"affected:lint": "nx affected:lint",
"build": "nx build",
"commit": "cz",
"cz": "cz",
"dep-graph": "nx dep-graph",
"format": "nx format:write",
"format:check": "nx format:check",
"format:write": "nx format:write",
"help": "nx help",
"lint": "nx run-many -t lint",
"nx": "nx",
"nx-ignore": "nx-ignore",
"postinstall": "husky install",
"prepare": "husky",
"start": "nx serve",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator"
},
"dependencies": {
"next": "14.1.0",
"nextra": "2.13.3",
"nextra-theme-docs": "2.13.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"styled-components": "6.1.8",
"tslib": "2.6.2"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@nx/cypress": "18.0.4",
"@nx/eslint": "18.0.4",
"@nx/eslint-plugin": "18.0.4",
"@nx/jest": "18.0.4",
"@nx/js": "18.0.4",
"@nx/next": "18.0.4",
"@nx/workspace": "18.0.4",
"@swc-node/register": "1.8.0",
"@swc/core": "1.4.1",
"@swc/helpers": "0.5.6",
"@swc/plugin-styled-components": "1.5.118",
"@types/jest": "29.5.12",
"@types/node": "20.11.19",
"@types/react": "18.2.56",
"@types/react-dom": "18.2.19",
"@types/react-is": "18.2.4",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"babel-jest": "29.7.0",
"babel-plugin-styled-components": "2.1.4",
"cypress": "13.6.4",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nx": "18.0.4",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}