-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 857 Bytes
/
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
{
"name": "anonymous-chat",
"version": "2.0.0",
"description": "Chat with strangers randomly.",
"main": "index.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build --no-prerender",
"serve": "preact build --no-prerender && preact serve",
"dev": "preact watch",
"test": "eslint src && preact test"
},
"author": "gokulkrishh",
"license": "MIT",
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"devDependencies": {
"eslint": "^6.8.0",
"if-env": "^1.0.0",
"preact-cli": "^1.1.1"
},
"dependencies": {
"dotenv": "^4.0.0",
"firebase": "^4.1.1",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"react-autobind": "^1.0.6",
"react-mixin": "^3.0.5",
"reactfire": "^1.0.0",
"timeago.js": "^3.0.1"
}
}