-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.77 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
{
"name": "sapper_play_ground",
"description": "sapper Play ground",
"version": "0.0.1",
"scripts": {
"watch:tailwind": "postcss static/tailwind.css -o static/index.css -w",
"build:tailwind": "NODE_ENV=production postcss static/tailwind.css -o static/index.css",
"build": "yarn build:tailwind && sapper build --legacy",
"dev": "run-p watch:tailwind dev:sapper",
"dev:sapper": "sapper dev",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"lint": "prettier --check 'src/**/*.{html,js,svelte}'",
"lint_fix": "prettier --write 'src/**/*.{html,js,svelte}'"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@fullhuman/postcss-purgecss": "^2.1.0",
"@now/node": "^1.5.0",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.2.0",
"autoprefixer": "^9.7.6",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-plugin-svelte3": "^2.7.3",
"focus-visible": "^5.1.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"prettier": "^2.0.5",
"prettier-plugin-svelte": "^1.1.0",
"prettier-plugin-toml": "^0.3.1",
"rollup": "^2.3.4",
"rollup-plugin-postcss": "^2.5.0",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-terser": "^5.3.0",
"sapper": "^0.27.12",
"svelte": "^3.20.1",
"svelte-material-ui": "^1.0.0-beta.21",
"svelte-mui": "^0.3.3-3",
"tailwindcss": "^1.4.6"
},
"dependencies": {
"axios": "^0.19.2",
"compression": "^1.7.4",
"polka": "^0.5.2",
"sirv": "^0.4.2"
},
"engines": {
"node": "12.x"
}
}