-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1.16 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
{
"name": "snap-carousel",
"private": true,
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"release": "lerna run build && lerna run test && auto shipit",
"dev": "lerna run --parallel --scope @snap-carousel/core --scope @snap-carousel/react --scope @snap-carousel/svelte start",
"build:docs": "cd packages/docs && pnpm build",
"build:storybook": "cd packages/react && pnpm build-storybook",
"predeploy": "pnpm build:docs && pnpm build:storybook",
"deploy": "netlify deploy --prod --dir=packages/docs/dist/ --dir=packages/react/storybook-static/=/storybook"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"auto": "^11.3.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"jest": "29",
"jest-environment-jsdom": "29",
"jest-snapshot": "29",
"lerna": "^8.1.9",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^6.0.1",
"ts-jest": "29",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
}
}