-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 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
47
{
"name": "scroll-gradients",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:css": "postcss ./src/styles/index.css -o ./public/main.css -w -u postcss-nesting postcss-clean",
"dev:javascript": "rollup -cw",
"dev": "concurrently \"npm:dev:*\"",
"build:css": "postcss ./src/styles/index.css -o ./public/main.css -u postcss-nesting postcss-clean --no-map",
"build:javascript": "NODE_ENV=production rollup -c",
"build": "concurrently \"npm:build:*\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanjudis/scroll-gradient.git"
},
"keywords": [],
"author": "stefan judis <stefanjudis@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanjudis/scroll-gradient/issues"
},
"homepage": "https://github.com/stefanjudis/scroll-gradient#readme",
"dependencies": {
"a11ycolor": "^2.0.9",
"color": "^3.1.2",
"esm": "^3.2.25",
"htm": "^2.2.1",
"preact": "^10.0.0",
"preact-render-to-string": "^5.0.6",
"randomcolor": "^0.5.4",
"rollup": "^1.23.1",
"rollup-plugin-node-resolve": "^5.2.0"
},
"devDependencies": {
"autoprefixer": "^9.6.4",
"concurrently": "^5.0.0",
"postcss-clean": "^1.1.0",
"postcss-cli": "^6.1.3",
"postcss-nesting": "^7.0.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^5.1.2",
"vercel": "^28.16.2"
}
}