-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
{
"version": "0.0.18-9",
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"bootstrap": "rm -rf ./node_modules; npm install; npm run build",
"setup": "npm run bootstrap",
"server": "npm run start",
"update": "npm run bootstrap",
"build": "rm -rf ./dist && tsc && cp -rf package.json dist",
"test": "prisma migrate reset -f && jest",
"test:integration": "prisma migrate reset -f && npm run test:coverage",
"test:watch": "prisma migrate reset -f && jest --watch",
"test:coverage": "prisma migrate reset -f && jest --coverage",
"lint": "ts-standard src | snazzy",
"lint:fix": "ts-standard src --fix | snazzy",
"prepare": "npm run build",
"size": "size-limit",
"analyze": "size-limit --why",
"check": "npm run lint && npm run build && npm run test:integration",
"dist": "npm run lint && npm run test:integration && npm run build && cp README.md dist && cd dist && npm publish --"
},
"ts-standard": {
"project": "./tsconfig.json",
"ignore": [
"dist",
"prisma",
"coverage",
"*.spec.*"
]
},
"name": "nextjs-backend-helpers",
"author": "Adam Beck",
"module": "nextjs-backend-helpers.esm.js",
"size-limit": [
{
"path": "dist/nextjs-backend-helpers.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/nextjs-backend-helpers.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"@prisma/client": "3.13.0",
"@types/cookie": "0.4.1",
"@types/jsonwebtoken": "8.5.8",
"bcryptjs": "2.4.3",
"cookie": "0.4.2",
"cookies": "0.8.0",
"dayjs": "1.11.5",
"jsonwebtoken": "8.5.1",
"pino": "7.10.0",
"uuid": "8.3.2"
},
"peerDependencies": {
"next": "13.x.x"
},
"devDependencies": {
"@size-limit/preset-small-lib": "7.0.5",
"@tsconfig/node16": "1.0.2",
"@types/bcryptjs": "2.4.2",
"@types/cookies": "0.7.7",
"@types/jest": "29.0.2",
"@types/uuid": "8.3.4",
"jest": "29.0.3",
"next": "13.x.x",
"np": "7.6.0",
"pino-pretty": "7.6.1",
"prisma": "3.13.0",
"size-limit": "7.0.5",
"snazzy": "^9.0.0",
"ts-jest": "29.0.1",
"ts-standard": "^11.0.0",
"tsconfig-paths": "4.1.0",
"tslib": "2.3.1",
"typescript": "4.8.3"
}
}