-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.27 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
{
"name": "skoip-scheduler",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8001",
"dependencies": {
"@koa/router": "^10.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.171",
"@types/mixpanel-browser": "^2.35.7",
"@types/node": "^15.6.0",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.8",
"axios": "^0.21.1",
"btoa": "^1.2.1",
"chalk": "^4.1.1",
"classnames": "^2.3.1",
"crypto": "^1.0.1",
"find-config": "^1.0.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-route": "^3.2.0",
"koa-session": "^6.2.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"mixpanel": "^0.13.0",
"mixpanel-browser": "^2.41.0",
"node-fetch": "^2.6.1",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"react-spinners": "^0.11.0",
"sequelize": "^6.6.2",
"sweetalert2": "^11.1.2",
"sweetalert2-react-content": "^4.1.1",
"ts-node": "^10.2.0",
"twilio": "^3.66.1",
"typescript": "^4.2.4",
"uuid4": "^2.0.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"eject": "react-scripts eject",
"server": "nodemon server/index.js",
"start-dev": "concurrently \"npm run server\" \"npm run start\"",
"migrate": "npx sequelize-cli db:migrate",
"make-migration": "npx sequelize-cli migration:generate --name $1",
"generate-playlists": "/usr/local/bin/node server/crons/generatePlaylists.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-modal": "^3.12.0",
"concurrently": "^6.2.0",
"nodemon": "^2.0.9",
"sass": "^1.63.6"
}
}