This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.03 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
{
"name": "empoliga",
"description": "Sistema da Empoliga",
"version": "0.0.0",
"main": "api/src/server.ts",
"repository": "git@github.com:MatheusPoliCamilo/empoliga-node.git",
"author": "Matheus Poli <matheuspolicamilo@gmail.com>",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"bcryptjs": "^2.4.3",
"date-fns": "^2.21.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.23.1",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.19",
"next": "^10.0.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hotjar": "^2.2.1",
"react-text-mask": "^5.4.3",
"tsc": "^1.20150623.0",
"yup": "^0.32.9"
},
"scripts": {
"test": "jest",
"coverage": "jest --collectCoverage",
"build": "next build",
"start": "next start",
"dev": "next dev",
"compile": "tsc",
"lint": "yarn eslint '**/*.{js,ts,tsx}'",
"css-build": "node-sass --omit-source-map-url styles/index.scss css/index.css",
"css-watch": "npm run css-build -- --watch"
},
"devDependencies": {
"@testing-library/dom": "^7.30.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.13",
"@tsconfig/node14": "^1.0.0",
"@types/jest": "^26.0.22",
"@types/js-cookie": "^2.2.6",
"@types/node": "^14.14.36",
"@types/react": "^17.0.3",
"@vercel/node": "^1.9.1",
"bulma": "^0.9.2",
"cypress": "^6.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"vercel": "^22.0.1"
}
}