-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "tableflip-www",
"version": "1.7.1",
"description": "tableflip-www",
"main": "index.js",
"scripts": {
"test": "say sorry && exit 1",
"start": "npm-run-all build watch",
"postinstall": "npm run build",
"clean": "rm -rf ./dist",
"build": "npm-run-all build:svg --parallel build:static build:css build:js build:html",
"build:static": "cp -r public/ dist/",
"build:svg": "svgshelf 'svg/*.svg' pages/bundle.svg",
"build:css": "postcss --use postcss-import --use postcss-cssnext pages/main.css -o dist/bundle.css",
"build:js": "browserify -t jadeify pages/main.js -o dist/bundle.js",
"build:html": "node build/jade",
"watch": "npm-run-all --parallel watch:*",
"watch:serve": "browser-sync start --files 'dist/*' --server dist",
"watch:static": "nodemon -w public -e '*' -x npm run build:static",
"watch:css": "nodemon -w pages -e css -x npm run build:css",
"watch:js": "watchify -t jadeify pages/main.js -o dist/bundle.js",
"watch:svg": "nodemon -w svg -e svg -x npm run build:svg",
"watch:html": "nodemon -w pages -e jade,md -x npm run build:html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/tableflip-www.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tableflip/tableflip-www/issues"
},
"homepage": "https://github.com/tableflip/tableflip-www#readme",
"dependencies": {
"async": "^1.5.2",
"basscss": "^8.0.1",
"basscss-align": "^1.0.2",
"basscss-border": "^4.0.2",
"basscss-forms": "^1.0.0",
"basscss-grid": "^2.0.0",
"basscss-hide": "^1.0.1",
"basscss-layout": "^3.1.0",
"basscss-margin": "^1.0.7",
"basscss-padding": "^1.1.3",
"basscss-position": "^2.0.3",
"basscss-type-scale": "^1.0.5",
"basscss-typography": "^3.0.3",
"browserify": "^13.0.0",
"find": "^0.2.4",
"jade": "^1.11.0",
"jadeify": "^4.6.0",
"jstransformer-remarkable": "^1.1.1",
"lodash": "^4.6.1",
"mkdirp": "^0.5.1",
"normalize.css": "^3.0.3",
"npm-run-all": "^1.2.11",
"page": "^1.7.1",
"postcss-cli": "^2.5.1",
"postcss-cssnext": "^2.4.0",
"postcss-import": "^8.0.2",
"svgshelf": "^1.0.3"
},
"devDependencies": {
"browser-sync": "^2.11.1",
"find": "^0.2.4",
"nodemon": "^3.0.3",
"npm-run-all": "^1.8.0",
"watchify": "^3.7.0"
}
}