This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
73 lines (73 loc) · 1.88 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": "sample-next-app",
"version": "3.7.3",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocialGouv/sample-next-app"
},
"dependencies": {
"@hapi/boom": "^9.1.4",
"@hapi/joi": "^17.1.1",
"@sentry/nextjs": "^6.12.0",
"@socialgouv/bootstrap.core": "^0.2.1",
"@socialgouv/matomo-next": "^1.2.2",
"@zeit/next-source-maps": "^0.0.3",
"argon2": "^0.28.3",
"cookie": "^0.4.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^15.5.3",
"graphql-request": "^3.5.0",
"http-proxy-middleware": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"next": "^11.0.1",
"next-urql": "^3.2.1",
"nodemailer": "^6.6.5",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"urql": "^2.0.6",
"uuid": "^8.3.2",
"wonka": "^4.0.15"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@socialgouv/eslint-config-react": "^1.100.0",
"@socialgouv/eslint-config-recommended": "^1.100.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.3",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.5.1",
"typescript": "^4.5.3"
},
"license": "MIT",
"main": "index.js",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"e2e": "yarn --cwd=./optional/e2e/runners/puppeteer",
"lint": "eslint src/*",
"precommit": "lint-staged",
"prepare": "is-ci || husky install",
"start": "NODE_ENV=production next start",
"test": "jest"
},
"lint-staged": {
"src/**": [
"yarn lint --cache --fix",
"yarn test --bail --findRelatedTests"
]
}
}