-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "challenge-frontend-fpass",
"version": "1.0.0",
"description": "A challenge of a frontend application from Fpass",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "npm run lint -- --fix",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@types/react": "^18.2.13",
"crypto-js": "^4.1.1",
"next": "^13.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}