-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.95 KB
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
{
"name": "houdini",
"version": "1.0.0",
"description": "CSS Houdini Experiments",
"main": "index.js",
"private": true,
"browserslist": [
"defaults"
],
"scripts": {
"dev:js": "rollup -c -w",
"dev:css": "postcss app/css/index.css -o app/bundle.css -w",
"dev:server": "browser-sync app --files \"app/**/*, !app/css/**, !app/js/**\" --no-open --no-notify",
"prod:server": "browser-sync dist --no-open --no-notify --no-ghost-mode",
"build:pre:js": "rollup -c --environment NODE_ENV:production",
"build:pre:css": "postcss app/css/index.css -o dist/bundle.css --env production",
"build:post:copy": "cp app/index.html dist/index.html",
"build": "rimraf dist && concurrently npm:build:pre:* && concurrently npm:build:post:*",
"start": "concurrently --kill-others npm:dev:*",
"production": "npm run build && npm run prod:server"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.25.2",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-node-resolve": "^8.0.0",
"browser-sync": "^2.26.13",
"concurrently": "5.2.0",
"cssnano": "^4.1.10",
"import-http": "^0.3.1",
"postcss": "7.0.31",
"postcss-cli": "7.1.1",
"postcss-easings": "^2.0.0",
"postcss-import": "^12.0.1",
"postcss-import-url": "^5.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "6.7.0",
"rimraf": "^3.0.2",
"rollup": "2.12.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-terser": "^6.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nucliweb/houdini.git"
},
"keywords": [],
"author": {
"name": "Joan Leon",
"twitter": "@nucliweb",
"mail": "joan.leon@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nucliweb/houdini/issues"
},
"homepage": "https://css-houdini-experiments.netlify.app/"
}