-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 3.26 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "atomic",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "is-ci || husky install",
"doctoc": "doctoc README.md",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"resolutions": {
"minimist": "^1.2.6"
},
"dependencies": {
"axios": "^1.3.4",
"core-js": "^3.28.0",
"document-register-element": "1.14.10",
"express": "4.18.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"next": "13.2.0",
"next-seo": "^5.15.0",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"regenerator-runtime": "0.13.11",
"tslib": "^2.5.0"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.0",
"@nrwl/cli": "15.7.2",
"@nrwl/cypress": "15.7.2",
"@nrwl/eslint-plugin-nx": "15.7.2",
"@nrwl/express": "15.7.2",
"@nrwl/jest": "15.7.2",
"@nrwl/js": "15.7.2",
"@nrwl/linter": "15.7.2",
"@nrwl/next": "15.7.2",
"@nrwl/node": "15.7.2",
"@nrwl/nx-cloud": "^15.1.1",
"@nrwl/react": "15.7.2",
"@nrwl/tao": "15.7.2",
"@nrwl/web": "15.7.2",
"@nrwl/webpack": "15.7.2",
"@nrwl/workspace": "15.7.2",
"@testing-library/react": "14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.0",
"@types/express": "4.17.17",
"@types/jest": "29.4.0",
"@types/node": "18.14.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.4.3",
"commitizen": "^4.3.0",
"cypress": "^12.6.0",
"cz-conventional-changelog": "3.3.0",
"doctoc": "^2.2.1",
"dotenv": "16.0.3",
"eslint": "^8.34.0",
"eslint-config-next": "^13.2.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"is-ci": "^3.0.1",
"jest": "29.4.3",
"jest-environment-jsdom": "^29.4.3",
"nx": "15.7.2",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "2.8.4",
"react-test-renderer": "18.2.0",
"sass": "1.58.3",
"tailwindcss": "^3.2.7",
"ts-jest": "29.0.5",
"ts-node": "~10.9.1",
"typescript": "~4.9.5",
"webpack": "^5.75.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}