-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "recoil-comeback",
"version": "1.0.0",
"description": "Rehydrates Recoil state after the window reloads.",
"main": "test/index.tsx",
"repository": "[email protected]:mtilda/recoil-comeback.git",
"author": "Mathilda <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"start": "next start",
"dev": "next dev"
},
"dependencies": {
"axios": "^0.24.0",
"next": "^12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-syntax-highlighter": "^15.4.5",
"recoil": "^0.4.1"
},
"devDependencies": {
"@types/react": "17.0.14",
"@types/react-dom": "^17.0.11",
"@types/react-syntax-highlighter": "^13.5.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"typescript": "^4.4.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}