-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.54 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
{
"name": "react-instastories",
"version": "1.0.6",
"description": "The next generation of React Stories Library",
"author": {
"name": "Dmitry Britov",
"email": "[email protected]",
"url": "https://github.com/kenclaron"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kenclaron/react-instastories"
},
"bugs": {
"url": "https://github.com/kenclaron/react-instastories/issues"
},
"engines": {
"yarn": ">=3",
"node": ">=18.18.0 || ^20.9.0 || >=21.1.0"
},
"scripts": {
"install:base": "cd packages/base && npm install",
"install:external": "cd packages/external && npm install",
"install:presets": "cd packages/presets && npm install",
"install:website": "cd packages/website && npm install",
"start": "run-p start:base start:external start:presets start:website",
"start:base": "cd packages/base && npm start",
"start:external": "cd packages/external && npm start",
"start:presets": "cd packages/presets && npm start",
"start:website": "cd packages/website && npm run dev",
"test": "run-s test:lint test:prettier test:stylelint",
"test:lint": "eslint . --fix",
"test:prettier": "prettier . --write",
"test:stylelint": "stylelint \"**/*.scss\" --fix",
"build": "run-s build:base build:external build:presets build:website",
"build:base": "cd packages/base && npm run build",
"build:external": "cd packages/external && npm run build",
"build:presets": "cd packages/presets && npm run build",
"build:website": "cd packages/website && npm run build",
"serve:website": "cd packages/website && npm start",
"predeploy": "npm install && npm run build",
"deploy": "gh-pages -d packages/website/out"
},
"peerDependencies": {
"react": "^16.14.0 || ^17 || ^18 || ^19",
"react-dom": "^16.14.0 || ^17 || ^18 || ^19"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-security": "^3.0.1",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.5.4"
},
"workspaces": [
"packages/*"
]
}