-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.69 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
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
{
"name": "peer-chat",
"version": "1.0.2",
"private": true,
"author": "Alberto Miranda <b3rt.js@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/codealchemist/peer-chat.git"
},
"scripts": {
"start": "craco start",
"build": "craco build; cp _redirects build",
"prebuild": "cd netlify/functions/ably-token-request && npm i",
"test": "CI=true craco test --silent --forceExit --updateSnapshot --detectOpenHandles",
"test:watch": "craco test",
"coverage": "jest --coverage",
"lint": "standard",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"@material-ui/core": "^3.9.1",
"buffer": "^6.0.3",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"enzyme-to-json": "^3.3.5",
"moment": "^2.24.0",
"nanoid": "^2.0.1",
"react": "^16.7.0",
"react-clipboard.js": "^2.0.2",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"redux-devtools-extension": "^2.13.7",
"redux-mock-store": "^1.5.3",
"redux-saga": "^1.0.0",
"standard": "^17.1.0",
"styled-components": "^4.1.3"
},
"dependencies": {
"ably": "^1.2.48",
"process": "^0.11.10",
"react-scripts": "^5.0.1",
"serve": "^10.1.1",
"simple-peer": "^9.11.1"
},
"standard": {
"ignore": [
"build/**",
"public/**"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}