forked from scalableminds/chatroom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "@scalableminds/chatroom",
"version": "0.11.0",
"license": "AGPL-3.0",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"classnames": "^2.2.6",
"date-fns": "^2.0.1",
"lodash.isequal": "^4.5.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-icons": "^3.2.1",
"react-markdown": "^3.3.0",
"remark-breaks": "^1.0.0",
"unfetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"flow-bin": "^0.106.3",
"http-server": "^0.11.1",
"node-sass": "^4.8.3",
"parcel-bundler": "^1.12.3",
"prettier": "^1.14.2"
},
"scripts": {
"build": "parcel build src/index.js --out-file Chatroom.js",
"watch": "parcel watch src/index.js --out-file Chatroom.js",
"flow": "flow",
"pretty": "prettier --write src/*",
"prepare": "yarn build",
"serve": "http-server"
},
"main": "dist/Chatroom.js"
}