-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
{
"name": "auth0",
"version": "1.0.0",
"description": "Example React/TypeScript application with Auth0",
"author": "Michael Siek <me@michaelsiek.com>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build:frontend": "parcel build public/index.html --public-url ./ --no-source-maps",
"build:backend": "tsc",
"build": "concurrently \"yarn build:frontend\" \"yarn build:backend\"",
"dev:frontend": "parcel serve public/index.html --port 4040 --no-source-maps",
"dev:backend": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/**/*.tsx' --exec 'ts-node' src/server/index.ts",
"dev": "concurrently \"yarn dev:backend\" \"yarn dev:frontend\"",
"fmt": "prettier --write 'src/**/**/*.{ts,tsx}'",
"start:frontend": "parcel public/index.html --no-source-maps --port 4040",
"start:backend": "node dist/server/index.js",
"start": "concurrently \"yarn start:frontend\" \"yarn start:backend\""
},
"dependencies": {
"@auth0/auth0-react": "^1.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"axios": "^0.21.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"helmet": "^4.1.1",
"jwks-rsa": "^1.11.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"reactstrap": "^8.6.0",
"ts-node": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/history": "^4.7.8",
"@types/node": "^14.14.2",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@types/reactstrap": "^8.5.2",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"bracketSpacing": true,
"printWidth": 80,
"semi": false,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none"
},
"browserslist": [
"last 1 Chrome version"
]
}