generated from BinPar/bpt-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.14 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
{
"name": "bpt-next",
"version": "1.0.0",
"description": "An opinionated Node.js + Next.js boilerplate. The BinPar Way.",
"scripts": {
"build": "next build",
"dev": "next dev",
"echo": "echo asd $environment asd",
"lint": "eslint \"**/*.{ts,tsx}\" --ignore-pattern node_modules/ --ignore-pattern prod_node_modules/",
"lint:print-config": "eslint --print-config .eslintrc",
"setup-update-from-template": "git remote add template [email protected]:BinPar/bpt-next.git",
"start": "next start -p 8080",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage-dev": "NODE_ENV=development jest --coverage --watchAll",
"test:dev": "NODE_ENV=development jest --watch",
"type-check": "tsc -p ./ts.tsconfig.json",
"update-from-template": "git pull template develop --allow-unrelated-histories --squash",
"use-node-tls": ". ~/.nvm/nvm.sh && nvm install && nvm use"
},
"engines": {
"node": ">= 16.13"
},
"homepage": "https://github.com/BinPar/bpt-next#readme",
"author": "Ignacio Ferro <[email protected]> (https://www.binpar.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/BinPar/bpt-next.git"
},
"bugs": {
"url": "https://github.com/BinPar/bpt-next/issues"
},
"license": "ISC",
"dependencies": {
"classnames": "^2.3.2",
"next": "^13",
"next-i18next": "^10",
"prom-client": "^14",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^1",
"web-vitals": "^2",
"xmlbuilder": "^15"
},
"devDependencies": {
"@next/bundle-analyzer": "^13",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/node": "^18",
"@types/prettier": "^2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"autoprefixer": "^10.4.14",
"eslint": "^8",
"eslint-config-next": "^13",
"jest": "^27",
"jest-watch-typeahead": "^1.1.0",
"postcss": "^8",
"standard-version": "^9.5.0",
"tailwindcss": "^3",
"tailwindcss-aria-attributes": "^1.3.0",
"ts-jest": "^27",
"typescript": "^4"
}
}