This repository was archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.06 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.06 KB
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
{
"name": "zoapp-ui",
"version": "0.8.8",
"description": "Javascript ES7 React UI Material Components extensions",
"author": "Mik BRY <mik@zoapp.com>",
"license": "MIT",
"main": "index.js",
"scripts": {
"clean-dist": "rm -r -f dist && mkdir dist",
"compile": "yarn compile:css && babel src/libs -d dist && cp -f ./package.json ./dist/package.json && cp -f ./LICENSE ./dist/LICENSE && cp -f ./README.md ./dist/README.md",
"compile:css": "yarn clean-dist && cleancss -o dist/compressed.css src/libs/css/app.css",
"dev": "yarn compile:dev && yarn start:dev",
"lint": "eslint src/libs src/demos tests --ext=js --ext=jsx",
"test": "jest",
"compile:dev": "yarn compile:css && webpack --env=dev --progress --profile --colors",
"start:dev": "webpack-dev-server --env=dev --inline",
"willPublish": "yarn run lint && yarn run test && yarn run compile",
"distribute": "yarn willPublish && npm publish ./dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Zoapp/zui.git"
},
"homepage": "https://github.com/Zoapp/zui",
"bugs": {
"url": "https://github.com/Zoapp/zui/issues"
},
"keywords": [
"React",
"ES7",
"Material components"
],
"engines": {
"node": ">=8.5.0"
},
"dependencies": {
"prop-types": "15.6.0",
"react": "16.4.2",
"react-dnd": "5.0.0",
"react-dnd-html5-backend": "5.0.1",
"react-dom": "16.4.2",
"react-redux": "5.0.7",
"redux": "4.0.0",
"zrmc": "0.12.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-css-cli": "^4.1.10",
"copy-webpack-plugin": "4.6.0",
"cross-env": "^5.1.3",
"css-loader": "0.28.9",
"eslint": "^4.15.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-import-resolver-webpack": "0.8.4",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jest": "^21.13.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "7.11.1",
"file-loader": "3.0.1",
"jest": "23.4.2",
"nodemon": "^1.14.11",
"prettier": "1.14.2",
"react-hot-loader": "4.3.4",
"react-test-renderer": "16.4.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"jest": {
"testURL": "http://localhost",
"moduleNameMapper": {
"demos/(.*)": "<rootDir>/src/demos/$1",
"libs/(.*)": "<rootDir>/src/libs/$1",
"tests/(.*)": "<rootDir>/tests/$1"
}
}
}