-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "dexter-ui",
"homepage": "https://sys13.github.io/dexter-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild-css": "shx cp -R node_modules/bootstrap/scss src/bootstrap",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"analyze": "npm run build && source-map-explorer build/static/js/main.*",
"precommit": "lint-staged",
"start": "npm-run-all -p watch-css start-js",
"start-js": "env-cmd .env.development react-scripts start",
"build": "npm-run-all build-css build-js",
"build-js": "env-cmd .env.production react-scripts build",
"test": "env-cmd .env.development react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"bootstrap": "^4.0.0",
"env-cmd": "^7.0.0",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"jquery": "^3.3.1",
"jsonschema": "^1.2.4",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2",
"popper.js": "^1.12.9",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-jsonschema-form": "^1.0.3",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"shx": "^0.2.2",
"source-map-explorer": "^1.5.0"
},
"devDependencies": {
"@storybook/react": "^3.3.13",
"prettierrc": "0.0.0-5"
}
}