-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "quackui",
"version": "1.1.0",
"description": "QuackUI - Simple website’s colors and components generator",
"main": "src/index.js",
"repository": "https://github.com/dooffy/quackui",
"homepage": "http://quackui.org/",
"author": "Maksym Shykula",
"license": "MIT",
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"standard": "standard"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"mustache": "^2.3.0",
"node-sass-chokidar": "^1.1.0",
"node-vibrant": "^3.0.0",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-color": "^2.14.0",
"react-dom": "^16.2.0",
"react-syntax-highlighter": "^7.0.2"
},
"devDependencies": {
"gh-pages": "^1.1.0",
"react-scripts": "^1.1.1",
"standard": "^11.0.0"
}
}