-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "@hamitzor/x-components",
"version": "1.0.0",
"description": "Lightweight React Components for Complex UIs",
"main": "./index.js",
"repository": "https://github.com/hamitzor/x-components",
"author": "Hamit Zor (thenrerise@gmail.com)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"change-case": "^4.1.1",
"eslint": "^6.8.0",
"express": "^4.17.1",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"react-icons": "^3.9.0",
"react-router-dom": "^5.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"classnames": "^2.2.6",
"color": "^3.1.2",
"compression": "^1.7.4",
"is-touch-device": "^1.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-jss": "^10.0.4",
"react-transition-group": "^4.3.0",
"vhost": "^3.0.2"
},
"resolutions": {
"@babel/preset-env": "^7.8.0"
},
"scripts": {
"watch": "webpack --watch --mode=development",
"build": "webpack --mode=development",
"start": "nodemon start-demo-app.js"
},
"publishConfig": {
"access": "public"
}
}