-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 2.3 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
{
"name": "svelte-contentful-boilerplate",
"description": "Svelte Sapper Contentful Boilerplate",
"version": "0.0.1",
"scripts": {
"build:tailwind": "NODE_ENV=production postcss static/styles-pre-tailwind.css -o static/styles.css && npm run autoprefixer",
"watch:tailwind": "postcss static/styles-pre-tailwind.css -o static/styles.css -w",
"watch:scss": "node-sass static/styles.scss static/styles-pre-tailwind.css && node-sass -w static/styles.scss static/styles-pre-tailwind.css",
"watch-all-css": "concurrently 'npm run watch:scss' 'npm run watch:tailwind'",
"autoprefixer": "postcss -u autoprefixer -r static/styles.css",
"build": "npm run build:tailwind && sapper build",
"dev": "concurrently 'npm run watch-all-css' 'sapper dev --no-hot'",
"dev-draft": "DRAFT_MODE=true concurrently 'npm run watch-all-css' 'sapper dev --no-hot'",
"export": "sapper export",
"start": "node __sapper__/build",
"deploy-draft": "now --env DRAFT_MODE=true --name draft-svelte-contentful-sandbox",
"deploy-production": "now"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^13.4.0",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@types/node": "^12.12.14",
"apisauce": "^2.0.0",
"compression": "^1.7.1",
"contentful": "^8.0.3",
"css-loader": "^3.3.2",
"dotenv": "^8.2.0",
"marked": "^0.8.0",
"now-sapper": "^0.37.1",
"polka": "next",
"postcss": "^7.0.25",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^2.0.0",
"sass": "^1.23.7",
"sirv": "^0.4.0",
"style-loader": "^1.0.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2"
},
"devDependencies": {
"autoprefixer": "^9.7.3",
"concurrently": "^5.0.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"postcss-cli": "^6.1.3",
"postcss-load-config": "^2.1.0",
"precss": "^4.0.0",
"sapper": "^0.27.11",
"svelte": "^3.0.0",
"svelte-loader": "^2.9.0",
"svelte-preprocess": "^3.2.6",
"tailwindcss": "^1.1.4",
"webpack": "^4.7.0"
}
}