-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.63 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
{
"name": "my_organizer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --config ./dev/webpack.config.dev.js",
"build": "webpack --config ./dev/webpack.config.dev.js",
"build:prod": "webpack --config ./dev/webpack.config.prod.js",
"lint": "eslint --fix src --ext .jsx --ext .js --ext .ts --ext .tsx"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/DmitryPetrovCM/MyOrganizer.git"
},
"author": "Dmitriy Petrov",
"license": "ISC",
"bugs": {
"url": "https://github.com/DmitryPetrovCM/MyOrganizer/issues"
},
"homepage": "https://github.com/DmitryPetrovCM/MyOrganizer#readme",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@teamsupercell/typings-for-css-modules-loader": "^2.1.0",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.9.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.8",
"@types/node-sass": "^4.11.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.2",
"@types/react-router-dom": "^5.1.3",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-require-context-hook": "^1.0.0",
"css-loader": "^3.3.0",
"css-modules-typescript-loader": "^4.0.0",
"eslint": "^6.7.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.7.2",
"react-dom": "^16.12.0",
"redux-create-reducer": "^2.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"typings-for-css-modules-loader": "^1.7.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.15",
"react": "^16.12.0",
"react-draggable": "^4.2.0",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"reselect": "^4.0.0",
"uuid": "^3.3.3"
}
}