forked from StratoDem/sd-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.93 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
{
"name": "sd-material-ui",
"version": "4.4.1",
"description": "material-ui components for Dash",
"main": "build/index.js",
"author": "Michael Clawar, Eric Linden, Sreeja Keesara, Danny Kaminsky [email protected]",
"scripts": {
"start": "webpack-serve ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublish": "npm run validate-init",
"build:js-dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:py": "dash-generate-components ./src/lib/components sd_material_ui",
"build:py-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py)",
"build:all": "npm run build:js && npm run build:js-dev && npm run build:py",
"build:all-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:all)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StratoDem/sd-material-ui.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/StratoDem/sd-material-ui/issues"
},
"homepage": "https://github.com/StratoDem/sd-material-ui",
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"date-fns": "^2.16.1",
"dot-prop": "^5.3.0",
"lodash": "^4.17.20",
"lodash.merge": "^4.6.2",
"material-ui": "^0.20.2",
"react-transition-group": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "^7.12.10",
"@material-ui/pickers": "^3.2.10",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copyfiles": "2.1.1",
"css-loader": "^4.3.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"flow-bin": "0.131.0",
"node-sass": "^4.14.1",
"npm": "^6.14.10",
"react": "^16.14.0",
"react-docgen": "^5.3.1",
"react-dom": "^16.14.0",
"sass-loader": "7.1.0",
"style-loader": "^1.3.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-serve": "^3.2.0"
},
"jest": {
"modulePaths": [
"<rootDir>/src/js"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"testRegex": "\\.test\\.js$",
"setupFiles": [
"raf/polyfill",
"<rootDir>test/_test-env.js"
],
"collectCoverage": true,
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
},
"directories": {
"test": "test"
}
}