-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "material-ui-json-schema-viewer",
"version": "2.0.0",
"repository": "https://github.com/taskcluster/material-ui-json-schema-viewer",
"license": "MPL-2.0",
"main": "build/index.js",
"files": [
"build",
"src"
],
"scripts": {
"start": "start-storybook",
"build": "webpack --mode production",
"prepublish": "npm run build",
"lint": "eslint --cache --format codeframe --ext mjs,jsx,js src",
"test": "jest",
"test:watch": "jest --watch",
"deploy": "build-storybook -c .storybook -o storybook && gh-pages --remote upstream -d storybook"
},
"devDependencies": {
"@material-ui/core": "^4.7.1",
"@mozilla-frontend-infra/react-lint": "^2.0.1",
"@neutrinojs/jest": "9.0.0-rc.5",
"@neutrinojs/react-components": "9.0.0-rc.5",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/react": "^6.0.21",
"babel-loader": "^8.0.6",
"eslint": "^6.7.2",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"neutrino": "9.0.0-rc.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"peerDependencies": {
"@material-ui/core": "^4.7.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"classnames": "^2.2.6",
"markdown-it": "^10.0.0",
"mdi-react": "^6.7.0",
"prop-types": "^15.7.2",
"ramda": "^0.26.1"
}
}