-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.04 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
{
"name": "romdim",
"version": "0.0.1",
"description": "Portfolio for Romdim B.V. & Romanos Tsouroplis",
"keywords": "Portfolio",
"license": "MIT",
"author": "romdim",
"scripts": {
"dev": "run-p watch:tailwind sapper-dev",
"build": "yarn run build:tailwind && sapper build --legacy",
"export": "yarn run build:tailwind && sapper export docs --legacy",
"start": "node __sapper__/build",
"sapper-dev": "sapper dev",
"watch:tailwind": "./node_modules/postcss-cli/bin/postcss src/tailwind.css -o static/index.css -w",
"build:tailwind": "NODE_ENV=production ./node_modules/postcss-cli/bin/postcss src/tailwind.css -o static/index.css"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.0",
"@fullhuman/postcss-purgecss": "^4.0.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tsconfig/svelte": "^1.0.4",
"@types/compression": "^1.7.0",
"@types/node": "^14.0.27",
"@types/polka": "^0.5.1",
"autoprefixer": "^10.1.0",
"cssnano": "^4.1.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"rollup": "^2.23.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-svelte-svg": "^0.2.3",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"sapper": "^0.27.16",
"sass": "^1.30.0",
"svelte": "^3.24.0",
"svelte-preprocess": "^4.0.9",
"svelte-progressive-image": "^1.0.1",
"tailwindcss": "^2.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"compression": "^1.7.4",
"polka": "^0.5.2",
"sirv": "^1.0.10",
"tocca": "^2.0.9"
}
}