-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "sparkeats",
"license": "MIT",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "yarn prettier --write --cache src cypress",
"lint:scss": "stylelint src/**/*.scss",
"lint:ts": "eslint src cypress",
"lint": "yarn lint:scss & yarn lint:ts",
"test:e2e": "yarn cypress open",
"test:e2e:ci": "yarn cypress run",
"migrate": "nbb -m migrate-sparkeats place placeImage review reviewImage",
"seed": "node --experimental-json-modules data/seed.cjs",
"postinstall": "husky install"
},
"dependencies": {
"firebase": "^9.16.0",
"firebaseui": "^6.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.4.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@firebase/firestore-types": "^2.5.1",
"@testing-library/cypress": "^8.0.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-react": "^2.1.0",
"cypress": "^12.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"mysql2": "^2.3.3",
"nbb": "^0.7.135",
"prettier": "2.7.1",
"sass": "^1.55.0",
"stylelint": "^14.13.0",
"stylelint-config-prettier-scss": "0.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.8.4",
"vite": "^3.1.0"
}
}