-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "todo-mvc",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"format": "prettier --write --ignore-unknown **/*",
"start": "next start",
"lint": "next lint --cache",
"lint:fix": "next lint --cache --fix"
},
"dependencies": {
"axios": "^0.26.0",
"classnames": "^2.3.1",
"fp-ts": "^2.11.8",
"immutable": "^4.0.0",
"io-ts": "^2.2.16",
"io-ts-extra": "^0.11.6",
"io-ts-reporters": "^2.0.1",
"next": "^12.0.10",
"next-intl": "^2.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^1.2.2",
"todomvc-app-css": "^2.4.1",
"todomvc-common": "^1.0.5"
},
"devDependencies": {
"@types/node": "^17.0.16",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"version": "0.4.0"
}