-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.34 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "colostate-ricro-ui",
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/src/index.js"
]
},
"version": "3.5.8",
"description": "UI extention of Material UI for RICRO based applications.",
"author": "dlennox24",
"license": "MIT",
"repository": "csu-ricro/colostate-ricro-ui",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"bin": {
"cru-scripts": "scripts/scripts.js"
},
"scripts": {
"scripts": "node scripts/scripts.js",
"setup": "yarn install && node scripts/scripts.js no-install-lib no-clean",
"clean": "node scripts/scripts.js clean",
"start": "node scripts/start.js",
"start:lib": "rollup -c -w",
"start:ex": "cd example && yarn start",
"start:test": "yarn run test:watch",
"build": "rollup -c",
"build:ex": "cd example && yarn run build",
"test": "cross-env CI=1 react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom",
"prepare": "yarn run build",
"predeploy": "yarn run lint && cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build",
"lint": "eslint \"src/**/*.js\" \"example/src/**/*.js\" \"scripts/**/*.js\"",
"lint:fix": "eslint \"src/**/*.js\" \"example/src/**/*.js\" \"scripts/**/*.js\" --fix"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@svgr/rollup": "^4.1.0",
"babel-eslint": "9.0.0",
"chalk": "^2.4.1",
"concurrently": "^4.1.0",
"cross-env": "^5.1.4",
"eslint": "5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^4.0.0",
"gh-pages": "^2.0.1",
"jest": "23.6.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-scripts": "^2.1.1",
"react-test-renderer": "^16.6.3",
"redux-devtools": "^3.4.2",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-url": "^2.2.0",
"shelljs": "^0.8.3"
},
"files": [
"dist"
],
"dependencies": {
"@material-ui/core": "^3.9.3",
"axios": "^0.19.0",
"fuse.js": "^3.4.4",
"lodash": "^4.17.15",
"logrocket": "^0.6.20",
"mdi-material-ui": "^5.9.0",
"prism-react-renderer": "^0.1.5",
"prop-types": "^15.6.2",
"react-dropzone": "9.0.0",
"react-markdown": "^4.0.6",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1"
}
}