-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.6 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
{
"name": "pycon-italy-association",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3020",
"build": "yarn codegen && next build",
"start": "next start",
"codegen": "graphql-codegen -r dotenv/config -c codegen.yml",
"codegen:watch": "pnpm run codegen --watch",
"lint": "eslint src --ext .jsx,.js,.tsx,.ts",
"lint:ts": "tsc --noemit",
"lint:prettier": "prettier --check src/**/*",
"test": "exit 0"
},
"dependencies": {
"@stripe/stripe-js": "^1.32.0",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"next": "^12.1.6",
"postcss": "^8.4.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "^18.2.0",
"react-use-form-state": "^0.13.2",
"tailwindcss": "^3.1.4",
"urql": "^2.2.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.2.14",
"@graphql-codegen/typescript": "^2.5.1",
"@graphql-codegen/typescript-operations": "^2.4.2",
"@graphql-codegen/typescript-react-apollo": "^3.2.16",
"@graphql-codegen/typescript-urql": "^3.5.12",
"@python-italia/eslint-config": "^1.0.13",
"@testing-library/dom": "^8.14.0",
"@testing-library/user-event": "^14.2.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"common-tags": "^1.8.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}