-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.23 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
{
"name": "material-react",
"version": "1.0.4",
"description": "",
"main": "./dist",
"keywords": [
"react",
"material design",
"components",
"react-component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rontav/material-react.git"
},
"scripts": {
"start": "start-storybook -p 9001",
"build-storybook": "build-storybook",
"scss": "copyfiles -u 1 src/**/*.scss dist/ && copyfiles -u 1 src/_variables.scss dist/",
"lint": "eslint src/**/*.js src/**/*.jsx || echo; stylelint src/**/*.scss || echo",
"babel": "babel ./src --out-dir ./dist",
"build": "cross-env NODE_ENV=production npm run babel && npm run scss",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"publishDev": "npm publish --tag=dev",
"publishStable": "npm publish --tag=latest",
"prepublishOnly": "npm run build"
},
"author": "Valentin Mocanu <mr_vali@yahoo.ro> (http://rontavstudio.com)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@storybook/addon-actions": "^4.1.6",
"@storybook/addon-knobs": "^4.1.6",
"@storybook/react": "^4.1.6",
"autoprefixer": "^9.4.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"copyfiles": "^2.1.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"eslint-plugin-react": "^7.12.3",
"font-awesome": "^4.7.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"url-loader": "^1.1.2"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"smoothscroll": "^0.4.0"
}
}