-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.96 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@yazilim-vip/howto-react",
"version": "0.4.1",
"description": "Made with create-react-library",
"author": "yazilim-vip",
"license": "MIT",
"repository": "yazilim-vip/react-howto",
"main": "lib/index.js",
"source": "src/lib/index.tsx",
"homepage": "http://react-howto.yazilim.vip",
"scripts": {
"lint": "eslint --ext .jsx --ext .js --ext tsx --ext ts src/",
"lib:clean": "rm -rf ./lib",
"lib:build": "tsc --project src/lib && cp src/lib/components/HowToContainer.css lib/components/HowToContainer.css",
"lib:bundle": "run-s lib:clean lib:build",
"showcase:start": "react-scripts start",
"showcase:start:firebase": "./env.sh firebase && cp env-config.js ./public/ && run-s showcase:start",
"showcase:start:webapp": "./env.sh webapp && cp env-config.js ./public/ && run-s showcase:start",
"showcase:clean": "rm -rf build",
"showcase:build": "react-scripts build",
"showcase:bundle:firebase": "run-s showcase:clean showcase:build",
"showcase:bundle:webapp": "run-s showcase:clean showcase:build",
"docker:clean": "docker-compose stop && docker-compose rm -vf",
"docker:build": "docker build --no-cache -t yazilimvip/howto-react:latest .",
"docker:run": "docker-compose up -d",
"docker:test": "run-s docker:clean docker:build docker:run"
},
"peerDependencies": {
"react": "^16.13.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@types/node": "^12.12.38",
"@types/react": "^17.0.0",
"@types/react-bootstrap": "^0.32.25",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/underscore": "^1.10.24",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"bootstrap": "^4.5.3",
"connected-react-router": "^6.8.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^4.0.1",
"firebase": "^7.23.0",
"jquery": "3.5.1",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-json-view": "^1.19.1",
"react-markdown": "^4.3.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-sliding-pane": "^6.1.2",
"react-syntax-highlighter": "^15.4.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"rollup": "^2.36.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-typescript": "^1.0.1",
"rollup-watch": "^4.3.1",
"typescript": "^4.1.2",
"underscore": "^1.11.0",
"webfontloader": "^1.6.28"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"env-cmd": "^10.1.0"
}
}