-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.95 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.95 KB
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
{
"name": "decaf.live",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/express": "^4.17.2",
"@types/mongoose": "^5.5.36",
"bootstrap": "^4.4.1",
"bottleneck": "^2.19.5",
"concurrently": "^5.0.2",
"cron": "^1.7.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.6.1",
"formik": "^2.1.1",
"jquery": "^3.4.1",
"mongoose": "^5.8.3",
"nodemon": "^2.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.0",
"react-typeform-embed": "^0.2.1",
"reactstrap": "^8.2.0",
"recompose": "^0.30.0",
"styled-components": "^4.4.1",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"twilio": "^3.39.1",
"typescript": "^3.7.4",
"winston": "^3.2.1",
"yup": "^0.28.0"
},
"scripts": {
"start:dev": "node_modules/.bin/concurrently \"npm run server:dev\" \"npm run client\"",
"server:dev": "node_modules/.bin/nodemon",
"start": "./node_modules/.bin/ts-node -P ./server/tsconfig.json -r tsconfig-paths/register ./server/index.ts",
"heroku-postbuild": "npm run build",
"client": "react-scripts start",
"build": "react-scripts build",
"client:test": "react-scripts test",
"client:eject": "react-scripts eject"
},
"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"
]
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"./server"
],
"exec": "npm start",
"ext": "ts"
}
}