-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.16 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
95
96
97
98
99
100
101
102
103
104
{
"name": "syncify",
"author": "Daniel Schleindlsperger",
"version": "1.0.0",
"license": "ISC",
"description": "",
"main": "index.js",
"scripts": {
"debug": "NODE_OPTIONS='--inspect' next",
"dev": "next",
"build": "next build",
"prestart": "npm run migrate up",
"start": "next start",
"migrate": "NODE_OPTIONS='--unhandled-rejections=strict' node database/migrate",
"test": "jest",
"e2e": "TS_NODE_PROJECT=tsconfig.e2e.json DOTENV_CONFIG_PATH=.env.build wdio",
"e2e:ci": "CI=true start-server-and-test dev http://localhost:3000/rooms e2e",
"typecheck": "tsc",
"lint": "eslint --ext .tsx,.ts src/",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"webhook-proxy": "ssh -R syncify-${USER}.serveo.net:80:localhost:3000 serveo.net"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@chakra-ui/react": "^1.1.0",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@slonik/migrator": "^0.7.0",
"classnames": "^2.2.6",
"cookie": "^0.4.1",
"easy-peasy": "^4.0.1",
"framer-motion": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"next": "^10.0.2",
"pg": "^8.5.1",
"pg-native": "^3.0.0",
"pusher": "^4.0.1",
"pusher-js": "^7.0.1",
"ramda": "^0.27.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"slonik": "^23.0.2",
"spotify-web-api-js": "^1.5.1",
"spotify-web-api-node": "^5.0.0",
"swr": "^0.3.9",
"winston": "^3.3.3",
"yup": "^0.30.0"
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addons": "^6.1.2",
"@storybook/react": "^6.1.2",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/classnames": "^2.2.11",
"@types/cookie": "^0.4.0",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.9",
"@types/pg": "^7.14.7",
"@types/ramda": "^0.27.32",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/slonik": "^22.1.4",
"@types/spotify-web-api-node": "^4.0.2",
"@types/spotify-web-playback-sdk": "^0.1.7",
"@types/yup": "^0.28.3",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"@vercel/node": "^1.8.5",
"@wdio/cli": "^6.9.1",
"@wdio/local-runner": "^6.9.1",
"@wdio/mocha-framework": "^6.8.0",
"@wdio/selenium-standalone-service": "^6.9.0",
"@wdio/spec-reporter": "^6.8.1",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.1",
"dotenv": "^8.2.0",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"localtunnel": "^2.0.0",
"postcss": "^8.2.9",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.0",
"start-server-and-test": "^1.11.6",
"storybook-addon-next-router": "^2.0.0",
"tailwindcss": "^2.1.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2",
"vercel": "^21.0.0"
}
}