-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.82 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "give-it-to-me",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"start:cdn\" \"npm:start:api-server\" \"npm:start:front-server\"",
"start:e2e": "./scripts/e2e.sh",
"start:api-server": "source scripts/set_dev.sh && nodemon server/server.js --watch server",
"start:front-server": "source scripts/set_dev.sh && next dev",
"start:cdn": "serve files -p 3005",
"build:front-server": "next build",
"init": "node ./scripts/init.js --dbPath=./db_v1.db",
"sample": "node ./scripts/sampleData.js --dbPath=./db_v1.db",
"test:server": "jest server",
"lint:server": "eslint server",
"lint:client": "eslint --ext .tsx --ext .ts client"
},
"dependencies": {
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@hapi/joi": "17.1.1",
"@mui/icons-material": "5.15.14",
"@sentry/browser": "5.15.5",
"@sentry/node": "5.15.5",
"@sentry/webpack-plugin": "1.11.1",
"@zeit/next-source-maps": "0.0.4-canary.1",
"body-parser": "1.19.0",
"bunyan": "1.8.12",
"classnames": "2.2.6",
"compression": "1.7.4",
"express": "4.17.1",
"express-async-handler": "1.2.0",
"font-color-contrast": "1.0.3",
"fuzzy": "0.1.3",
"gm": "1.25.0",
"isomorphic-unfetch": "3.0.0",
"lodash": "4.17.15",
"multer": "1.4.2",
"next": "14.1.4",
"next-redux-wrapper": "5.0.0",
"query-string": "6.12.1",
"react": "18.2.0",
"react-autosuggest": "10.0.0",
"react-dom": "18.2.0",
"react-dropzone": "10.2.2",
"react-modal": "^3.16.1",
"react-redux": "9.1.0",
"recharts": "2.12.3",
"redux": "5.0.1",
"redux-thunk": "2.3.0",
"sqlite3": "5.1.7",
"sse": "^0.0.8",
"styled-components": "5.1.0",
"tinycolor2": "1.4.1",
"url-join": "4.0.1",
"uuid": "7.0.3"
},
"devDependencies": {
"@types/lodash": "4.14.150",
"@types/node": "13.13.5",
"@types/styled-components": "5.1.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@zeit/next-bundle-analyzer": "0.1.2",
"concurrently": "^8.2.2",
"eslint": "8.57.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "^7.34.1",
"husky": "4.2.5",
"jest": "25.5.4",
"lint-staged": "10.2.2",
"minimist": "1.2.5",
"nodemon": "2.0.3",
"npm-run-all": "4.1.5",
"postcss": "7.0.29",
"prettier": "2.0.5",
"serve": "^14.2.1",
"supertest": "4.0.2",
"typescript": "5.4.3"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"main": "index.js",
"repository": "[email protected]:samuelmartineau/give-it-to-me.git",
"license": "MIT",
"author": "<[email protected]>",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}