-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.81 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
{
"name": "react-modular-ui",
"version": "4.0.1",
"main": "lib/",
"repository": {
"type": "git",
"url": "git+https://github.com/codetraceio/react-modular-ui.git"
},
"scripts": {
"test": "jest --coverage",
"test-dev": "jest --coverage",
"test-update": "jest --coverage -u",
"build": "./run/build.sh",
"build-windows": "tsc --project tsconfig.build.json && sass ./styles/src/default/index.scss ./styles/lib/default/index.css",
"watch": "./run/watch.sh",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=ba6f18b77375",
"lint": "eslint --ext .ts,.tsx src",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@storybook/addon-actions": "^8.4.0",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/addon-interactions": "^8.4.0",
"@storybook/addon-links": "^8.4.0",
"@storybook/addon-webpack5-compiler-swc": "^2.0.0",
"@storybook/react": "^8.4.0",
"@storybook/react-webpack5": "^8.4.0",
"@storybook/test": "^8.4.0",
"@types/jest": "^30.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"chromatic": "^16.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.10.0",
"jest": "^30.0.0",
"prettier": "^3.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.77.0",
"storybook": "^8.4.0",
"storybook-addon-sass-postcss": "^0.3.1",
"ts-jest": "^29.4.0",
"typescript": "^5.4.0"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
}
}