This repository has been archived by the owner on Jul 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.67 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": "ipfs-ui-style-guide",
"version": "1.0.0",
"description": "A shared style guide for UI design in the IPFS universe.",
"scripts": {
"test": "say sorry && exit 1",
"clean": "rm -rf ./docs/*",
"build": "npm-run-all --serial clean --parallel build:*",
"build:html": "node build/html.js",
"build:static": "rsync -a node_modules/ipfs-css/{ipfs.css,fonts} docs",
"watch": "run-p build:static watch:*",
"watch:html": "nodemon -w theme.json -w components -w pages -e js,json,jsx -x npm run build:html",
"watch:serve": "browser-sync start --files 'docs/bundle.*' --files 'docs/*.html' --server docs --port 4000 --reload-delay 600",
"deploy": "run-s build deploy:*",
"deploy:ipfs": "ipfs add -r -q docs | tail -n1 >versions/current; cat versions/current >> versions/history; cat versions/current"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/ipfs-ui-style-guide.git"
},
"author": "olizilla",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-ui-style-guide/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-ui-style-guide#readme",
"dependencies": {},
"devDependencies": {
"babel-preset-env": "1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"browser-sync": "2.26.3",
"cssnano": "^3.10.0",
"ipfs-css": "^0.2.0",
"nodemon": "1.18.5",
"npm-run-all": "^4.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"require-directory": "^2.1.1",
"standard": "^10.0.3",
"styled-components": "^3.0.1",
"styled-system": "^1.1.1",
"tachyons": "^4.9.1"
}
}