-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 974 Bytes
/
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-react-hooks",
"version": "1.0.0",
"description": "A demo of various ways to use hooks",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest"
},
"author": "",
"license": "MIT",
"dependencies": {
"@zeit/next-css": "1.0.1",
"@zeit/next-sass": "1.0.1",
"classnames": "2.2.6",
"next": "^8.0.3",
"next-compose-plugins": "2.1.1",
"next-fonts": "0.17.0",
"node-sass": "4.11.0",
"react": "^16.8.4",
"react-day-picker": "7.3.0",
"react-dom": "^16.8.4",
"react-icons": "3.5.0",
"react-select": "2.4.2",
"reset-css": "4.0.1"
},
"devDependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"coveralls": "3.0.3",
"husky": "1.3.1",
"jest": "^24.3.1",
"jest-dom": "3.1.3",
"now": "15.0.1",
"react-testing-library": "^6.0.0"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}