-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.55 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
{
"name": "svelte-every-layout",
"description": "An implementation of the Every-Layout.dev components using Svelte that also includes cleaning up of styles",
"keywords": [],
"author": "Aaron George <[email protected]> (https://github.com/aarongeorge)",
"version": "1.0.0",
"license": "MIT",
"main": "src/script/layout/index.ts",
"scripts": {
"build": "yarn run clean && cross-env NODE_ENV=local npx parcel build ./src/index.pug --no-source-maps",
"build:prod": "yarn run clean && cross-env NODE_ENV=production npx parcel build ./src/index.pug --no-source-maps",
"clean": "rm -rf ./dist ./.cache",
"serve": "yarn run clean && cross-env NODE_ENV=local npx parcel serve ./src/index.pug",
"serve:prod": "yarn run clean && cross-env NODE_ENV=production npx parcel serve ./src/index.pug"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.3.0",
"@types/node": "^14.0.13",
"@types/nprogress": "^0.2.0",
"autoprefixer": "^9.8.2",
"cross-env": "^7.0.0",
"eslint": "^7.3.0",
"eslint-plugin-svelte3": "^2.7.3",
"parcel-bundler": "^1.12.4",
"parcel-plugin-svelte": "^4.0.5",
"postcss-import": "^12.0.1",
"pug": "^3.0.1",
"stylus": "^0.54.7",
"svelte": "^3.23.2",
"svelte-preprocess": "^3.9.10",
"tailwindcss": "^1.4.6",
"typescript": "^3.9.5"
},
"dependencies": {
"axios": "^0.21.1",
"nprogress": "^0.2.0",
"svelte-spa-router": "^2.2.0"
}
}