This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2.59 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
{
"name": "bonsai-ui",
"version": "1.1.0",
"homepage": "https://zieka.github.io/bonsai-ui",
"scripts": {
"build-bonsai": "node-sass src/assets/bonsai/bonsai.scss -o public/ --output-style compressed",
"build-css": "node-sass src -o src && npm run build-bonsai",
"build": "npm run build-css && react-scripts build",
"ci:deploy": "npm run standard-version",
"ci:test": "npm run prettier-check",
"deploy": "npm run prettier-check && gh-pages -d build",
"eject": "react-scripts eject",
"postbuild": "mkdir build/bonsai-ui && mv build/static build/bonsai-ui/static/",
"predeploy": "npm run build",
"prettier-check-js": "prettier --config package.json --list-different './**/*.js'",
"prettier-check-scss": "prettier --config package.json --list-different './**/*.scss'",
"prettier-check": "npm run prettier-check-js && npm run prettier-check-scss",
"prettier-format-js": "prettier --config package.json --write './**/*.js'",
"prettier-format-scss": "prettier --config package.json --write './**/*.scss'",
"prettier-format": "npm run prettier-format-js && npm run prettier-format-scss",
"standard-version": "standard-version",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"storybook": "npm run watch-css & start-storybook -s ./src/assets/bonsai -p 9001 -c .storybook",
"stylelint": "stylelint './**/*.scss'",
"test": "echo 'no test'",
"watch-bonsai": "node-sass -w src/assets/bonsai/bonsai.scss -o public/ --output-style compressed",
"watch-css": "npm run build-css && npm run watch-bonsai && node-sass src -o src --watch"
},
"dependencies": {
"@maji/react-prism": "1.0.1",
"gh-pages": "1.1.0",
"node-sass": "4.9.3",
"npm-run-all": "4.1.3",
"prismjs": "1.15.0",
"react-dom": "16.5.2",
"react-lazyload": "2.3.0",
"react-router-dom": "4.3.1",
"react-router": "4.3.1",
"react-scripts": "1.0.14",
"react": "16.5.2",
"stylelint": "9.6.0"
},
"devDependencies": {
"@storybook/addon-a11y": "3.4.11",
"@storybook/addon-centered": "3.4.11",
"@storybook/addon-knobs": "3.4.11",
"@storybook/addon-viewport": "3.4.11",
"@storybook/react": "3.4.11",
"prettier": "1.14.3",
"standard-version": "4.4.0",
"stylelint-config-standard": "18.2.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "always"
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}