-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.81 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-basics",
"version": "0.39.0",
"description": "Everyday utilities for Next.js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/umami-software/next-basics.git"
},
"scripts": {
"build": "rollup -c"
},
"peerDependencies": {
"next": "^13.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.0",
"pure-rand": "^6.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.4",
"jest": "^27.2.4",
"lint-staged": "^11.1.2",
"next": "^12.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-eslint": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.78.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"source-map-loader": "^3.0.0",
"tslib": "^2.5.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^5.2.2"
}
}