forked from HearTogether/upclose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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
{
"name": "upclose",
"version": "1.0.0",
"description": "A hip online house party app",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"server": "ts-node server/index.ts",
"build": "rm -rf build && tsc --watch",
"client": "npm --prefix client run start",
"build:client": "npm --prefix client run build",
"iall": "npm i && npm --prefix client i",
"startboth": "npm run server & npm run client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpreble1/upclose.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wpreble1/upclose/issues"
},
"homepage": "https://github.com/wpreble1/upclose#readme",
"dependencies": {
"@types/bluebird": "^3.5.32",
"@types/validator": "^13.1.0",
"axios": "^0.19.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"google-auth-library": "^6.0.3",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-auth0": "^1.3.3",
"react-compound-slider": "^2.5.0",
"sequelize": "^6.3.0",
"socket.io": "^2.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/sequelize": "github:types/sequelize",
"@types/socket.io": "^2.1.8",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}