This repository has been archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.46 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "social-slam-frontend",
"version": "0.1.0",
"repository": "https://github.com/SocialSlam/social-slam-frontend.git",
"license": "MIT",
"scripts": {
"build": "([ -d dist ] && rm -R dist/*) ; parcel build src/index.html --no-cache",
"prettier:test": "prettier --single-quote --check 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"prettier": "./node_modules/.bin/prettier --single-quote --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"start": "parcel serve src/index.html",
"test": "yarn run prettier:test"
},
"browserslist": [
"defaults"
],
"dependencies": {
"@apollo/client": "^3.1.5",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"@rebass/forms": "^4.0.6",
"@types/simple-peer": "^9.6.0",
"axios": "^0.20.0",
"graphql": "^15.1.0",
"graphql-tag": "^2.10.3",
"react": "^16.13.1",
"react-avatar": "^3.9.7",
"react-dom": "^16.13.1",
"react-hamburger-menu": "^1.2.1",
"react-helmet": "^6.0.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"rebass": "^4.0.7",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"regenerator-runtime": "^0.13.7",
"simple-peer": "^9.7.2",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@parcel/babel-preset-env": "^2.0.0-alpha.3",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-hamburger-menu": "0.0.3",
"@types/react-helmet": "^6.0.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/rebass": "^4.0.6",
"@types/rebass__forms": "^4.0.2",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"parcel": "2.0.0-nightly.415",
"prettier": "^2.0.5",
"sass": "^1.26.8",
"typescript": "^4.0.2"
}
}