-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote.json
More file actions
76 lines (76 loc) · 2.24 KB
/
Copy pathnote.json
File metadata and controls
76 lines (76 loc) · 2.24 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
{
"notes": [
{
"id": 1,
"title": "Creating react app",
"command": "npx create-react-app .",
"key": "createReactApp"
},
{
"id": 2,
"title": "Added type script support",
"command": "npm install --save @types/node @types/react @types/react-dom @types/jest",
"key": "reactTypeSupport"
},
{
"id": 3,
"title": "Creating a react app with typescript support directly",
"command": "npx create-react-app <projectName> --template typescript",
"key": "reactTypeScriptApp"
},
{
"id": 4,
"title": "Added react router dom",
"command": "yarn add react-router-dom",
"key": "reactRouterDom"
},
{
"id": 5,
"title": "Added react icons package",
"command": "yarn add react-icons --save",
"key": "reactIcons"
},
{
"id": 6,
"title": "Added i18next - localization helper package",
"command": "yarn add i18next",
"key": "i18Next"
},
{
"id": 7,
"title": "Added backend resource loading extension",
"command": "yarn add npm i18next-http-backend",
"key": "i18NextHttpBackend"
},
{
"id": 8,
"title": "Added react translater package for localization",
"command": "yarn add react-i18next",
"key": "reactI18Next"
},
{
"id": 9,
"title": "Added axios pacakge",
"command": "yarn add axios",
"key": "axios"
},
{
"id": 10,
"title": "To add new vite js project",
"command": "yarn create vite",
"key": "vite"
},
{
"id": 11,
"title": "",
"command": "yarn add vite @vitejs/plugin-react vite-tsconfig-paths",
"key": "viteExt"
},
{
"id": 12,
"title":"removed react scripts after adding vite",
"command":"yarn remove react-scripts",
"key": "removeReactScript"
}
]
}