-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"name": "react-stub",
"version": "0.1.0",
"description": "My own react stub",
"main": "./src/index.js",
"repository": "git@github.com:intxcc/react-stub.git",
"author": "marvin@ruell.dev",
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-react": "^7.9.4",
"@types/node": "^13.11.1",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-router": "^5.1.5",
"@types/react-router-dom": "^5.1.4",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-clean-dist": "^0.0.6",
"sass": "^1.26.3",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-rational-order": "^0.1.1",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^3.0.0"
},
"dependencies": {
"mobx": "^5.15.4 || ^4.15.4",
"mobx-react": "^6.2.2",
"mobx-state-tree": "^3.15.0",
"react": "^16.8.0 || 16.9.0-alpha.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2"
}
}