-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "alec-reads",
"version": "1.0.0",
"private": true,
"description": "This tracks what I read online! Woo-hoo!",
"keywords": [
"reading"
],
"homepage": "https://github.com/alecglassford/read.alec.casa#readme",
"bugs": {
"url": "https://github.com/alecglassford/read.alec.casa/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/alecglassford/read.alec.casa.git"
},
"license": "Apache-2.0",
"author": {
"name": "Alec Glassford",
"email": "[email protected]",
"url": "https://alecglassford.com"
},
"scripts": {
"css": "sass --no-source-map --watch src/main.scss public/bundle-main.css",
"css-min": "sass --no-source-map --style=compressed src/main.scss tmp/main.css && purifycss tmp/main.css public/*.html src/*.svelte -m -o=public/bundle-main.css",
"build": "rollup -c && npm run css-min",
"dev": "npm run css & rollup -cw & serve public",
"lint": "eslint --ignore-path=.gitignore --ext=.js,.svelte ."
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"bootstrap": "^4.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-svelte3": "^2.7.3",
"lil-spinner": "^3.0.0",
"purify-css": "^1.2.5",
"rollup": "^2.1.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.3.0",
"sass": "^1.26.3",
"serve": "^11.3.0",
"svelte": "^3.20.1"
}
}