-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.59 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "next-nprogress-emotion",
"version": "2.0.0",
"license": "MIT",
"author": "Frederick Morin (https://freddydumont.com)",
"description": "Theme aware NProgress component to use in Next.js apps using Emotion or ThemeUI.",
"bugs": "https://github.com/freddydumont/next-nprogress-emotion/issues",
"repository": "github:freddydumont/next-nprogress-emotion",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"nextjs",
"next",
"react",
"nprogress",
"progress bar",
"emotion",
"themeui",
"theme-ui"
],
"main": "dist/index.js",
"module": "dist/next-nprogress-emotion.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@emotion/react": "^11.1.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"husky": "^4.3.0",
"next": "^10.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
},
"dependencies": {
"nprogress": "^0.2.0"
},
"peerDependencies": {
"@emotion/react": ">=11.0.0",
"next": ">=9",
"react": ">=16.8",
"react-dom": ">=16.8"
}
}