-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 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
43
{
"name": "demo-todo-with-nextjs",
"version": "0.0.1",
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint-staged": "npx lint-staged",
"lint": "npx eslint ./src"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
]
},
"dependencies": {
"@material-ui/core": "^4.10.2",
"appwrite": "^3.0.1",
"bootstrap": "^5.1.1",
"next": "^9.4.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^1.6.4",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.7",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}