-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·89 lines (89 loc) · 3.23 KB
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
{
"name": "chsk",
"version": "0.1.0",
"author": "Tomasz Konopka",
"description": "Library for dynamic data visualization and story-telling with React",
"keywords": [
"react",
"visualization",
"charts"
],
"homepage": "https://github.com/tkonopka/chsk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tkonopka/chsk.git"
},
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"prettier": "prettier --loglevel warn --write .",
"prettier-check": "prettier --check .",
"lint": "lerna run lint",
"build": "NODE_ENV=production lerna run build",
"build-dev": "NODE_ENV=development lerna run build",
"test": "lerna --concurrency 1 run test",
"test-coverage": "lerna --concurrency 1 run test-coverage",
"lint-examples": "eslint --max-warnings 0 examples/**/*{ts,tsx}",
"build-examples": "tsc -p examples/tsconfig.json",
"reset-cache": "nx reset",
"qc-examples": "npm run lint-examples; npm run build-examples",
"qc": "npm run reset-cache; npm run prettier && npm run lint && npm run build && npm run test && npm run qc-examples",
"status": "ts-node src/status.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"serve-storybook": "http-server ./storybook-static"
},
"bugs": {
"url": "https://github.com/tkonopka/chsk/issues"
},
"dependencies": {
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@mdx-js/react": "^2.1.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.1",
"@storybook/addon-docs": "9.1.17",
"@storybook/addon-links": "9.1.17",
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
"@storybook/mdx2-csf": "^1.0.0",
"@storybook/react-webpack5": "9.1.17",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-storybook": "9.1.17",
"http-server": "^14.1.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lerna": "^5.3.0",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"rollup": "^2.77.2",
"rollup-plugin-cleanup": "^3.2.1",
"storybook": "9.1.17",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.78.0"
},
"workspaces": [
"packages/*"
]
}