-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 2.67 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": "material-components",
"version": "0.5.0",
"description": "Stateless UI components for react that follow material design",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src app test",
"start:lib": "babel src --watch --out-dir lib",
"start:test": "watch --wait=1 \"npm run lint && npm run test -- --reporter dot\" src app test",
"start:css": "node-sass --watch src/index.scss lib/index.css",
"start:server": "webpack-dev-server",
"start": "npm-run-all --parallel start:*",
"prebuild": "npm run lint && rimraf lib && rimraf build",
"build": "babel src --out-dir lib && node-sass src/index.scss lib/index.css && webpack --config webpack.config.js",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel/register --recursive",
"fix": "prettier --write \"app/**/*.js\" \"app/**/*.scss\" \"src/**/*.js\" \"src/**/*.scss\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/garth/material-components.git"
},
"keywords": [
"appbar",
"button",
"calendar",
"cerebral",
"checkbox",
"component",
"datepicker",
"dialog",
"form",
"grid",
"input",
"material design",
"material",
"material-components",
"menu",
"react",
"react-component",
"select",
"sidenav",
"table"
],
"author": "Garth Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/garth/material-components/issues"
},
"homepage": "https://github.com/garth/material-components#readme",
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"jsxBracketSameLine": true
},
"dependencies": {
"classnames": "^2.2.0",
"exenv": "^1.2.0",
"node-waves": "^0.7.4",
"prop-types": "^15.6.1",
"react-transition-group": "^2.2.1",
"styled-components": "^3.2.1"
},
"devDependencies": {
"@cerebral/react": "^3.1.1",
"@cerebral/router": "^3.1.1",
"babel": "^5.8.29",
"babel-core": "^5.8.29",
"babel-eslint": "^4.1.4",
"babel-loader": "^5.4.0",
"bootstrap-sass": "^3.3.5",
"cerebral": "^4.1.1",
"chai": "^4.1.2",
"css-loader": "^0.23.0",
"eslint": "^1.10.1",
"eslint-plugin-react": "^3.10.0",
"mocha": "^5.0.3",
"moment": "^2.21.0",
"node-sass": "^4.7.2",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"watch": "^0.16.0",
"webpack": "^1.12.8",
"webpack-dev-server": "^1.12.1"
},
"peerDependencies": {
"moment": "^2.10.6",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}