-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 798 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 798 Bytes
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
{
"name": "react-peers",
"version": "0.1.0",
"scripts": {
"start": "parcel ./src/index.html --https",
"prebuild": "rm -rf .cache dist && tsc --noEmit",
"build": "parcel build ./src/index.html --public-url '/'",
"format": "prettier --write './src/**/*.{ts,tsx}'",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"parcel-bundler": "^1.11.0",
"postcss-modules": "^1.4.1",
"prettier": "^1.15.3",
"sass": "^1.15.2",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2"
},
"dependencies": {
"peerjs": "^0.3.18",
"react": "^16.7.0",
"react-dom": "^16.7.0"
}
}