-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.03 KB
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
{
"name": "prefs-rcl",
"description": "A Components for handling all preferences needed in an app.",
"version": "0.1.1",
"private": false,
"homepage": "https://github.com/Bridgeconn/prefs",
"repository": {
"type": "git",
"url": "https://github.com/Bridgeconn/prefs"
},
"license": "MIT",
"engines": {
"node": ">=4"
},
"scripts": {
"dev": "react-scripts start",
"build": "react-scripts build",
"prepublishOnly": "rm -fr ./dist & babel ./src --out-dir ./dist -s inline",
"predeploy": "yarn styleguide:build",
"deploy": "gh-pages -d styleguide",
"postpublish": "yarn deploy",
"start": "styleguidist server",
"styleguide:build": "styleguidist build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"nyc:report": "nyc report --reporter=json-summary --reporter=text",
"test": "start-test 6060 cypress:run && npm run nyc:report",
"create-coverage-badge": "bash scripts/create-badge-json.sh"
},
"dependencies": {
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "4.9.1",
"cypress": "^3.6.1",
"dog-names": "^2.0.0",
"file-saver": "^2.0.2",
"localforage": "1.9.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-styleguidist": "^9.1.14",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@cypress/code-coverage": "^1.10.2",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"istanbul-lib-coverage": "^2.0.5",
"nyc": "^14.1.1",
"start-server-and-test": "^1.10.6",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0",
"webpack": "^4.39.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"main": "dist/index.js",
"files": [
"dist/*"
]
}