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
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
{
"name": "sample-next-app",
"version": "2.2.4",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocialGouv/sample-next-app"
},
"dependencies": {
"@hapi/boom": "^9.1.1",
"@hapi/joi": "^17.1.1",
"@sentry/browser": "^5.30.0",
"@sentry/integrations": "^5.30.0",
"@sentry/node": "^5.30.0",
"@socialgouv/bootstrap.core": "^0.2.1",
"@socialgouv/matomo-next": "^1.2.1",
"@zeit/next-source-maps": "^0.0.3",
"argon2": "^0.27.1",
"cookie": "^0.4.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"http-proxy-middleware": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"next": "^10.0.7",
"next-urql": "^3.0.0",
"nodemailer": "^6.4.18",
"react": "^17.0.1",
"react-bootstrap": "^1.5.0",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"sentry-testkit": "^3.3.0",
"urql": "^2.0.1",
"uuid": "^8.3.2",
"wonka": "^4.0.15"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@socialgouv/eslint-config-react": "^1.52.0",
"@socialgouv/eslint-config-recommended": "^1.52.0",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^5.1.2",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "eslint src/*",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"main": "index.js",
"private": true,
"scripts": {
"build": "next build",
"dev": "node -r dotenv/config server.js dotenv_config_path=.env.development",
"k8s": "yarn --silent --cwd .k8s",
"lint": "eslint src/*",
"start": "NODE_ENV=production node server.js",
"test": "jest",
"e2e": "yarn --cwd=./optional/e2e/runners/puppeteer"
}
}