-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
110 lines (110 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
{
"name": "@carbon-platform/root",
"description": "Carbon platform monorepo root workspace",
"version": "0.2.11",
"license": "Apache-2.0",
"author": "IBM",
"private": true,
"homepage": "https://github.com/carbon-design-system/carbon-platform#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/carbon-design-system/carbon-platform.git"
},
"bugs": {
"url": "https://github.com/carbon-design-system/carbon-platform/issues"
},
"engines": {
"node": "^16.15.0",
"npm": "^8.8.0"
},
"files": [
".dockerignore",
".npmrc",
"Dockerfile",
"esbuild.base.mjs",
"LICENSE",
"package.json",
"tsconfig.base.json"
],
"workspaces": [
"scripts",
"packages/api",
"packages/eslint-plugin-carbon-platform",
"packages/icons",
"packages/mdx-components",
"packages/mdx-processor",
"packages/mdx-sanitizer",
"packages/micromanage-cli",
"packages/resources",
"packages/rmdx",
"packages/schemas",
"services/data-graph",
"services/logging",
"services/web-app"
],
"scripts": {
"all:build": "npm --workspaces --if-present run build",
"all:clean": "scripts/clean",
"lint": "scripts/lint",
"lint:fix": "scripts/lint_and_fix",
"packages:build": "npm --workspaces --if-present run package:build",
"prepare": "scripts/prepare",
"services:build": "npm --workspaces --if-present run service:build",
"test": "c8 --config=.c8rc.json npm --workspaces --if-present run test"
},
"dependencies": {
"@carbon/react": "1.27.0",
"@carbon/styles": "1.27.0",
"@nestjs/cli": "^9.5.0",
"@nestjs/common": "^9.4.3",
"@nestjs/core": "^9.4.3",
"@nestjs/graphql": "^12.0.8",
"@nestjs/microservices": "^9.4.3",
"@types/node": "^16.18.39",
"@types/react": "^17.0.62",
"@types/react-dom": "^17.0.20",
"esbuild": "^0.17.19",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^4.4.1",
"sass": "^1.64.2",
"typescript": "^4.9.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@nestjs/testing": "^9.4.3",
"@next/eslint-plugin-next": "^12.3.4",
"@testing-library/react": "^12.1.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"ava": "^5.3.1",
"c8": "^7.14.0",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-node": "^0.3.8",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.1.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.13",
"graphql-config": "^4.5.0",
"husky": "^8.0.3",
"jsdom": "^21.1.2",
"jsdom-global": "^3.0.2",
"lint-staged": "^13.2.3",
"npm-check-updates": "^16.10.17",
"prettier": "^2.8.8",
"stylelint": "^14.16.1",
"stylelint-config-carbon": "~1.12.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1"
}
}