-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.92 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
{
"name": "@qrator/mdc",
"version": "0.0.2",
"description": "",
"scripts": {
"changelog:update": "./node_modules/generate-changelog/bin/generate",
"changelog:commit": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"stage:major": "npm run changelog:update -- -M && npm run changelog:commit && npm version major",
"stage:minor": "npm run changelog:update -- -m && npm run changelog:commit && npm version minor",
"stage:patch": "npm run changelog:update -- -p && npm run changelog:commit && npm version patch",
"build": "./node_modules/babel-cli/bin/babel.js ./src -d ./lib --ignore __tests__",
"dev": "./node_modules/babel-cli/bin/babel.js ./src -w -d ./lib --ignore __tests__ -s inline"
},
"author": "Nikita Bobrov",
"main": "./lib/",
"repository": {
"type": "git",
"url": "https://github.com/QratorLabs/mui.git"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"generate-changelog": "^1.7.0"
},
"peerDependencies": {
"classnames": "^2.2.5",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rmwc": "^1.6.3"
}
}