-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.75 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
{
"name": "ysm-frontend",
"version": "0.0.1",
"description": "A companion app for survivors of sexual assault",
"license": "MIT",
"productName": "YSM",
"author": "Chayn",
"private": true,
"scripts": {
"dev": "next dev",
"dev:url": "BASE_URL=\"http://localhost:3001\" API_URL=\"http://localhost:3000\" next dev -p 3001",
"build": "next build",
"start": "next start",
"start:local": "BASE_URL=\"http://localhost:3001\" API_URL=\"http://localhost:3000\" next start -p 3001",
"start:heroku": "NODE_OPTIONS='--max_old_space_size=460' next start -p $PORT",
"lint": "eslint --ext js,jsx ./",
"lint:fix": "eslint --ext js,jsx --fix ./",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"test:unit": "NODE_ENV=test jest --pass-with-no-tests",
"test:unit:watch": "NODE_ENV=test jest --watch",
"test:unit:watchAll": "NODE_ENV=test jest --watchAll",
"test:cov": "NODE_ENV=test jest --collect-coverage --watchAll"
},
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"cacheDirectories": [
".next/cache"
],
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.53",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"add": "^2.0.6",
"axios": "^1.6.0",
"firebase": "^10.5.0",
"firebaseui": "^6.0.1",
"html-to-pdfmake": "^2.1.2",
"http-proxy-middleware": "^1.0.6",
"md5": "^2.3.0",
"next": "11",
"pdfmake": "^0.2.7",
"prettier": "^3.0.3",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-cookie-consent": "^6.1.0",
"react-device-detect": "^1.14.0",
"react-dom": "17.0.2",
"react-firebase-hooks": "^2.2.0",
"react-hotjar": "^5.5.0",
"react-html-parser": "^2.0.2",
"react-player": "^2.6.2",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"rollbar": "^2.25.0",
"storyblok-js-client": "^2.5.2",
"yarn": "^1.22.10"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3000",
"devDependencies": {
"@babel/preset-env": "^7.19.3",
"@svgr/webpack": "^5.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.1.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"jest": "^29.1.2",
"jsdom": "^20.0.1",
"jsdom-global": "^3.0.2",
"redux-mock-store": "^1.5.4"
}
}