forked from AdrianAndersen/sellpoint-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.84 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": "sellpoint-webapp",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"dev:db": "DATABASE_URL=$(grep DATABASE_URL env.txt | cut -d '=' -f2) next dev",
"build": "next build",
"start": "next start",
"start:db": "DATABASE_URL=$(grep DATABASE_URL env.txt | cut -d '=' -f2) yarn start",
"lint": "yarn run lint:prettier && yarn run lint:js && yarn run lint:css",
"lint:js": "eslint . --ext ts,tsx --ignore-path .prettierignore --fix",
"lint:css": "stylelint \"**/*.css\" --fix --ignore-path .prettierignore",
"lint:prettier": "prettier --check .",
"prettier": "prettier --write .",
"test": "jest"
},
"dependencies": {
"@material-ui/core": "4.11.3",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@material-ui/styles": "4.11.3",
"@prisma/client": "2.20.1",
"@react-google-maps/api": "2.1.1",
"autoprefixer": "10.2.5",
"classnames": "2.3.1",
"moment": "2.29.1",
"next": "10.1.3",
"next-images": "1.7.0",
"postcss": "8.2.9",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-toastify": "7.0.3",
"swr": "0.5.5",
"tailwindcss": "2.1.1"
},
"devDependencies": {
"@types/node": "14.14.37",
"@types/react": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"cypress": "7.0.0",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"prisma": "2.20.1",
"stylelint": "13.12.0",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "21.0.0",
"typescript": "4.2.3"
}
}