-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.04 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.04 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
57
58
59
60
61
62
63
64
{
"name": "svelte-app",
"version": "1.0.0",
"scripts": {
"build": "yarn compile:styles && yarn generate:icons && rollup -c",
"dev": "yarn compile:styles && cd docs && yarn dev",
"generate:icons": "node scripts/generateIcons.js",
"compile:styles": "node scripts/compileStyles.js",
"start": "sirv public",
"lint": "prettier --check '**/*.js' '**/*.svelte' &>/dev/null || (echo \"Linting failed. Run yarn lint:fix to fix the formatting issues\" && exit 1)",
"lint:fix": "prettier --write '**/*.js' '**/*.svelte'",
"create:component": "node scripts/createComponentRoute.js",
"test": "jest",
"build:docs": "yarn compile:styles && cd docs && yarn install && yarn gen:code-text && yarn export",
"test:watch": "yarn test --watch"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/svelte": "^3.0.0",
"babel-jest": "^25.3.0",
"codecov": "^3.7.1",
"csso": "^4.0.3",
"flush-promises": "^1.0.2",
"husky": "^4.2.5",
"jest": "^25.3.0",
"jest-transform-svelte": "^2.1.1",
"less": "^3.11.1",
"lodash": "^4.17.21",
"postcss": "^7.0.36",
"prettier": "^1.16.4",
"prettier-plugin-svelte": "^0.7.0",
"prompts": "^2.3.2",
"rollup": "^2.3.2",
"rollup-plugin-livereload": "^1.1.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svelte": "^5.2.1",
"rollup-plugin-terser": "^5.3.0",
"svelte": "^3.20.1",
"svelte-preprocess": "^3.7.1"
},
"dependencies": {
"@ant-design/colors": "^4.0.0",
"@ant-design/icons-svg": "^4.0.0",
"calculate-size": "^1.1.1",
"classnames": "^2.2.6",
"clipboard": "^2.0.6",
"css-animation": "^1.5.0",
"lodash-es": "^4.17.15",
"nanoid": "^3.1.3",
"raf": "^3.4.1",
"sirv-cli": "^0.4.5",
"style-to-object": "^0.3.0",
"to-style": "^1.3.3"
}
}