-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "lif_peer",
"version": "0.1.0",
"scripts": {
"start:server": "pm2 start pkg/server/server.js --no-daemon",
"start:www_dev": "next dev pkg/www/ --port=3100",
"start:www_dev80": "next dev pkg/www/ --port=80",
"start:www_build": "next build pkg/www/",
"start:www": "next build pkg/www/ && next start pkg/www/ --port=80",
"test": "mocha pkg/util/test.js"
},
"dependencies": {
"@svgr/webpack": "^5.5.0",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@vimeo/player": "^2.15.0",
"axios": "^0.21.1",
"buffer": "^6.0.3",
"buffer-from": "^1.1.1",
"classnames": "^2.2.6",
"express": "^4.17.1",
"hypercore": "^9.9.1",
"hypercore-crypto": "^2.3.0",
"hypercore-promisifier": "^1.1.0",
"hyperswarm-web": "^2.1.1",
"hyperspace": "^3.19.0",
"dat-sdk": "^2.8.1",
"idb": "^6.0.0",
"json-6": "^1.1.1",
"jquery": "2.1.4",
"mongodb": "^3.6.4",
"morgan": "^1.10.0",
"next": "10.0.7",
"next-auth": "^3.13.3",
"next-i18next": "^8.1.0",
"random-access-idb": "^1.2.1",
"react": "17.0.1",
"react-cookie": "^4.0.3",
"react-dom": "17.0.1",
"react-ga": "3.3.0",
"uint64be": "^3.0.0",
"varint": "^6.0.0",
"qs": "^6.10.1"
},
"devDependencies": {
"eslint-plugin-react": "7.22.0",
"autoprefixer": "^10.2.4",
"postcss": "^8.2.6",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^2.0.3",
"tailwindcss-rtl": "^0.7.3",
"babel-eslint": "10.1.0",
"eslint": "7.22.0",
"mocha": "8.3.2"
}
}