-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "stitches",
"version": "0.5.0",
"description": "web designers and developers' secret weapon. Generate html based on a collection of commonly used user interface patterns with no third-party css framework",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "postcss stitches.css -o public/stitches.css",
"watch:css": "postcss stitches.css -o public/stitches.css -w",
"bundle": "browserify client.js -o bundle.js",
"start": "npm run bundle & npm run watch:css & node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amiechen/web-component-library.git"
},
"keywords": [
"web",
"components",
"sort",
"builder",
"tailwind",
"tailwindcss",
"postcss",
"stitches"
],
"author": "Amie Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/amiechen/web-component-library/issues"
},
"homepage": "https://github.com/amiechen/web-component-library#readme",
"dependencies": {
"body-parser": "^1.18.3",
"dragula": "^3.7.2",
"express": "^4.16.3",
"imagesloaded": "^4.1.4",
"morgan": "^1.9.0"
},
"devDependencies": {
"autoprefixer": "^8.5.0",
"browserify": "^16.2.2",
"postcss-cli": "^5.0.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^11.1.0",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"postcss-simple-vars": "^4.1.0",
"purgecss": "^1.0.1",
"tailwindcss": "^0.5.3"
}
}