forked from react-materialize/react-materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.89 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": "react-materialize",
"version": "3.9.8",
"description": "Material design components for react",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"pretest": "npm run lint",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "rm -rf docs && build-storybook -c .storybook -o docs",
"build": "babel src --out-dir lib && npm run copy-types",
"copy-types": "copyfiles -f types/components/*.d.ts lib",
"lint": "eslint src test",
"fix": "eslint src test --fix",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"{src,test,stories}/**/*.js\"",
"prepush": "npm run lint"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/react-materialize/react-materialize.git"
},
"keywords": [
"material",
"react",
"materializecss",
"react-component"
],
"author": "Isaiah Peng <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-materialize/react-materialize/issues"
},
"jest": {
"verbose": true,
"setupFiles": [
"<rootDir>/test/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"homepage": "https://github.com/react-materialize/react-materialize",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-notes": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/react": "^10.0.3",
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.1.0",
"copyfiles": "^2.4.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.10.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-standard": "^2.0.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"jsdom": "^11.12.0",
"materialize-css": "^1.0.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"classnames": "^2.2.6"
}
}