-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.52 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
{
"name": "spartak-ui",
"version": "0.3.0",
"description": "A react component library",
"author": "Sergei Cherniaev <sergei@cherniaev.com>",
"license": "MIT",
"homepage": "https://github.com/shdq/spartak-ui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shdq/spartak-ui.git"
},
"bugs": {
"url": "https://github.com/shdq/spartak-ui/issues"
},
"scripts": {
"test": "jest",
"clean": "rm -rf dist",
"build": "npm run clean && rollup --config",
"storybook": "start-storybook -p 6006",
"test-storybook": "test-storybook",
"build-storybook": "build-storybook",
"lint": "eslint --ext .ts,.tsx ./components",
"lint-fix": "eslint --fix --ext .ts,.tsx ./components"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist/index.*"
],
"types": "dist/index.d.ts",
"devDependencies": {
"@babel/core": "^7.20.12",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack4": "^6.5.16",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack4": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/test-runner": "^0.9.4",
"@storybook/testing-library": "^0.0.13",
"@tabler/icons-react": "^2.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"babel-loader": "^8.3.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.12.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook-dark-mode": "^2.0.5",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@stitches/react": "^1.2.8"
}
}