-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
100 lines (100 loc) · 2.75 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "subscription-foundation",
"author": "bigcommerce",
"license": "MIT",
"version": "0.9.3",
"repository": {
"type": "git",
"url": "https://github.com/bigcommerce/subscription-foundation"
},
"scripts": {
"dev": "next dev",
"prebuild": "prisma generate && prisma migrate deploy",
"build": "next build",
"start": "next start -p $PORT",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "next lint",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@bigcommerce/big-design": "^0.36.0",
"@bigcommerce/big-design-icons": "^0.23.0",
"@prisma/client": "^4.15.0",
"@types/bcrypt": "^5.0.0",
"@types/hookrouter": "^2.2.5",
"@types/jsonwebtoken": "^9.0.2",
"@types/react-transition-group": "^4.4.6",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie": "^0.5.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.1.4",
"http-status-codes": "^2.2.0",
"lodash": "^4.17.21",
"next": "^13.4.4",
"next-connect": "^0.10.1",
"next-intl": "^2.14.6",
"node-bigcommerce": "^4.1.0",
"nookies": "^2.5.2",
"prisma": "^4.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"reflect-metadata": "^0.1.13",
"sanitize-html": "^2.10.0",
"stripe": "^12.8.0",
"styled-components": "^5.3.5",
"styled-system": "^5.1.5",
"ts-error": "^1.0.6",
"tsyringe": "^4.7.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.22.3",
"@next/eslint-plugin-next": "^13.4.4",
"@testing-library/react": "^14.0.0",
"@types/cookie": "^0.5.1",
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"babel-jest": "^29.5.0",
"babel-plugin-styled-components": "^2.1.3",
"eslint": "^8.42.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.3",
"use-intl": "^2.14.6"
}
}