-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.69 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
70
71
72
73
{
"name": "redwood-nprogress",
"version": "1.0.1",
"license": "MIT",
"author": "Frederick Morin (https://freddydumont.com)",
"description": "Theme aware NProgress component to use in RedwoodJS apps using Emotion or ThemeUI.",
"bugs": "https://github.com/freddydumont/redwood-nprogress/issues",
"repository": "github:freddydumont/redwood-nprogress",
"keywords": [
"redwoodjs",
"redwood",
"react",
"nprogress",
"progress bar",
"loading",
"spinner",
"emotion",
"themeui",
"theme-ui"
],
"main": "dist/index.js",
"module": "dist/redwood-nprogress.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"release": "np --no-tests"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"@emotion/core": "^10.0.0",
"@redwoodjs/router": "^0.x",
"react": ">=16",
"react-dom": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@emotion/core": "^10.0.28",
"@redwoodjs/router": "^0.3.2",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.29",
"@types/react-dom": "^16.9.5",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"np": "^6.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tsdx": "^0.13.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/nprogress": "^0.2.0",
"nprogress": "^0.2.0"
}
}