-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"name": "ganttchart",
"version": "0.1.0",
"scripts": {
"build": "node script/esbuild.js",
"check": "tsc --noEmit",
"dev": "serve --config script/serve.json",
"fix": "eslint --fix script/ src/ && stylelint --fix src/**/*.css",
"lint": "eslint script/ src/ && stylelint src/**/*.css",
"test": "exit 1",
"codegen": "graphql-codegen --config script/codegen.ts"
},
"dependencies": {
"clsx": "^1.2.1",
"esbuild": "^0.15.13",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.3.0",
"urql": "^3.0.3"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.11",
"@graphql-codegen/client-preset": "1.1.3",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript-urql": "^3.7.3",
"@tsconfig/strictest": "^1.0.2",
"@types/node": "^18.0.3",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"esbuild-css-modules-plugin": "^2.6.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.54.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"serve": "^14.1.1",
"stylelint": "^14.15.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^29.0.0",
"typescript": "^4.8.4"
}
}