-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.61 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
{
"name": "arkipel-client",
"version": "0.0.0",
"description": "Client for Arkipel",
"main": "index.js",
"scripts": {
"apollo-download-schema": "npx apollo client:download-schema --endpoint=http://arkipel.local:9192/query --excludes=node_modules/* --includes=**/*.tsx",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"codegen": "graphql-codegen --config codegen.ts",
"format": "prettier --write \"**/*.{md,js,jsx,ts,tsx,json,css,scss}\"",
"format-watch": "onchange \"**/*.{md,js,jsx,ts,tsx,json,css,scss}\" -- prettier --write {{changed}}",
"start": "concurrently --kill-others \"webpack serve --config webpack.dev.js --allowed-hosts arkipel.local\" \"npm:*-watch\"",
"test-onchange": "onchange \"**/*.js\" \"**/*.jsx\" -- npm test"
},
"keywords": [
"arkipel"
],
"author": "Marc-François Cochaux-Laberge",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.17",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@types/hcaptcha__react-hcaptcha": "^0.1.4",
"@types/lodash": "^4.14.173",
"@types/luxon": "^3.3.1",
"@types/styled-components": "^5.1.9",
"babel-loader": "^9.1.3",
"concurrently": "^9.0.1",
"css-loader": "^7.1.2",
"favicons": "^7.1.4",
"favicons-webpack-plugin": "^6.0.1",
"html-webpack-plugin": "^5.3.1",
"onchange": "^7.1.0",
"prettier": "^3.0.2",
"react-refresh": "^0.14.0",
"style-loader": "^4.0.0",
"typescript": "^5.2.2",
"webpack": "^5.37.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.0.0"
},
"dependencies": {
"@apollo/client": "^3.8.5",
"@hcaptcha/react-hcaptcha": "^1.0.0",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"chart.js": "^4.4.0",
"chartjs-adapter-luxon": "^1.1.0",
"lodash": "^4.17.21",
"luxon": "^3.4.2",
"react": "^18.2.0",
"react-cookie": "^7.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.5.2",
"react-media": "^1.10.0",
"react-router-dom": "^6.16.0",
"styled-components": "^6.1.0"
}
}