-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.97 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.97 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "jdi-react-extension",
"version": "3.0.55",
"description": "jdi react extension",
"scripts": {
"start": "npm run webpack",
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"build": "webpack",
"server": "node server.js",
"prettier": "prettier",
"patch": "npx mversion patch",
"test": "jest"
},
"main": "src/js/main.js",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"mobx",
"starter-kit"
],
"author": "JDI team",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdi-testing/jdn"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write src/**/*.jsx"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"antd": "^4.14.0",
"classnames": "^2.2.6",
"cyrillic-to-translit-js": "^3.1.0",
"jszip": "^3.6.0",
"lodash": "^4.17.21",
"mobx": "^6.1.8",
"mobx-react": "^7.1.0",
"mobx-react-devtools": "^6.1.1",
"mversion": "^2.0.1",
"parcel-bundler": "^1.12.5",
"primer": "^11.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-file-reader": "^1.1.4",
"react-jss": "^10.6.0",
"react-loading": "^2.0.3",
"react-responsive": "^8.2.0",
"react-select": "^4.3.0",
"simple-crypto-js": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/runtime": "^7.13.10",
"@svgr/webpack": "^5.5.0",
"@testing-library/react": "^12.0.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-mobx": "^2.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^5.1.3",
"eslint": "^7.22.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.22.0",
"extract-loader": "^5.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"jest-chrome": "^0.7.2",
"json-loader": "^0.5.7",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"manifest-loader": "0.0.1",
"mini-css-extract-plugin": "^1.3.9",
"prettier": "2.2.1",
"react-test-renderer": "^17.0.1",
"recursive-readdir": "^2.2.2",
"resolve-url-loader": "^3.1.2",
"style-loader": "^2.0.0",
"webpack": "^5.27.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}