-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.18 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
{
"name": "@naked-ui/svelte",
"version": "0.0.48",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"scripts": {
"build": "rollup -c && rm dist/index.js && mv dist/index.min.js dist/index.js && yarn generate-css",
"parse-scss": "yarn sass src/index.scss:dist/index.css --style compressed",
"generate-css": "yarn csso dist/index.css --output dist/index.css",
"prepublishOnly": "npm run build",
"test": "jest test",
"test:watch": "yarn test -- --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "del-cli storybook-static && build-storybook -c .storybook -o storybook-static",
"chromatic": "npx chromatic --project-token=24c457aa702f"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@rollup/plugin-alias": "^3.1.4",
"@rollup/plugin-node-resolve": "^13.0.2",
"@storybook/addon-a11y": "^6.3.4",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-svelte-csf": "^1.1.0",
"@storybook/addon-viewport": "^6.3.4",
"@storybook/svelte": "^6.3.4",
"@storybook/theming": "^6.3.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"autoprefixer": "^10.3.1",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"chromatic": "^5.10.0-canary.0",
"css-loader": "^6.2.0",
"csso": "^4.2.0",
"csso-cli": "^3.0.0",
"del-cli": "^4.0.1",
"jest": "^27.0.6",
"node-sass": "^6.0.1",
"postcss": "^8.3.6",
"rollup": "^2.53.3",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"svelte": "^3.40.0",
"svelte-jester": "^1.7.0",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.7.4",
"svelte-preprocess-sass": "^2.0.1"
},
"keywords": [
"svelte"
],
"files": [
"src",
"dist"
],
"dependencies": {
"sxcss": "^2.0.0"
}
}