This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.95 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
72
73
74
75
76
{
"name": "launcher-creator-welcome-app",
"version": "0.0.1",
"private": true,
"scripts": {
"build-css": "node-sass-chokidar src/ --output-style compressed $npm_package_sassIncludes_src $npm_package_sassIncludes_patternfly $npm_package_sassIncludes_patternflyReact $npm_package_sassIncludes_bootstrap $npm_package_sassIncludes_fontAwesome -o src/",
"watch-css": "yarn build-css && node-sass-chokidar src/ --output-style compressed $npm_package_sassIncludes_src $npm_package_sassIncludes_patternfly $npm_package_sassIncludes_patternflyReact $npm_package_sassIncludes_bootstrap $npm_package_sassIncludes_fontAwesome -o src/ --watch --recursive",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint": "tslint --project ./tsconfig.json",
"lintfix": "tslint --fix --project ./tsconfig.json",
"start-js": "react-scripts-ts start",
"start": "BROWSER=none npm-run-all -p watch-css start-js",
"start:prod": "run-s build serve",
"serve": "serve -s build",
"build-js": "react-scripts-ts build",
"build": "npm-run-all build-clean build-css build-js",
"build-clean": "rimraf ./build",
"test": "yarn build-css && react-scripts-ts test --env=jsdom",
"test:ci": "CI=true yarn test",
"eject": "react-scripts-ts eject",
"doc": "npx styleguidist server",
"build-doc": "styleguidist build",
"deploy-doc": "yarn build-doc && gh-pages -d styleguide"
},
"dependencies": {
"@patternfly/react-core": "1.37.2",
"@patternfly/react-icons": "2.9.1",
"axios": "0.18.0",
"classnames": "2.2.6",
"faker": "4.1.0",
"lodash": "4.17.11",
"moment": "2.22.2",
"react": "16.6.3",
"react-copy-to-clipboard": "5.0.1",
"react-dom": "16.6.3",
"react-json-pretty": "1.7.9",
"react-router-dom": "4.3.1",
"react-scripts-ts": "3.1.0"
},
"devDependencies": {
"@types/classnames": "2.2.6",
"@types/enzyme": "3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/faker": "4.1.4",
"@types/jest": "23.3.9",
"@types/lodash": "4.14.118",
"@types/moment": "2.13.0",
"@types/node": "10.12.11",
"@types/react": "16.7.7",
"@types/react-dom": "16.0.11",
"env-cmd": "8.0.2",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"enzyme-to-json": "3.3.4",
"gh-pages": "2.0.1",
"node-sass-chokidar": "1.3.4",
"npm-run-all": "4.1.5",
"react-docgen-typescript": "1.12.2",
"react-styleguidist": "8.0.6",
"rimraf": "2.6.2",
"serve": "10.1.1",
"typescript": "3.1.6"
},
"sassIncludes": {
"src": "--include-path src",
"patternflyReact": "--include-path node_modules/patternfly-react/dist/sass",
"patternfly": "--include-path node_modules/patternfly/dist/sass",
"bootstrap": "--include-path node_modules/bootstrap-sass/assets/stylesheets",
"fontAwesome": "--include-path node_modules/font-awesome-sass/assets/stylesheets"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}