-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.4 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
72
73
74
75
76
77
78
79
80
81
{
"name": "@fusebit-int/sample-app",
"version": "1.0.0",
"main": "libc/server/server.js",
"typings": "src/main.d.ts",
"files": [
"libc/**/*.js",
"libc/**/*.d.ts",
"libc/**/*.json",
"dist/**/*.js",
"dist/**/*.html"
],
"scripts": {
"build": "tsc && copyfiles public/**/* libc && webpack;",
"listen": "copyfiles public/**/* libc; tsc -w & webpack --mode development --watch --progress;",
"start": "node .;",
"dev": "nodemon .;",
"clean": "rm -rf libc & rm -rf dist",
"config": "node ./config-jwt",
"dev:all": "npm run build && concurrently \"npm run listen\" \"npm run dev\""
},
"dependencies": {
"@emotion/react": "11.4.1",
"@emotion/styled": "11.3.0",
"@fusebit/react-marketplace": "^2.6.0",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.0.1",
"concurrently": "^6.4.0",
"constate": "^3.3.2",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"node-fetch": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.1",
"react-router-dom": "^5.3.0",
"regenerator-runtime": "^0.13.9",
"tinycolor2": "^1.4.2",
"typescript": "^4.6.3"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@emotion/babel-plugin": "^11.3.0",
"@fusebit/tunnel": "^3.2.5",
"@types/cookie-session": "^2.0.43",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.5",
"@types/material-ui": "^0.21.9",
"@types/node": "^16.9.1",
"@types/node-fetch": "^2.5.12",
"@types/react-dom": "^17.0.9",
"@types/react-motion": "^0.0.31",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.25",
"@types/tinycolor2": "^1.4.3",
"@types/webpack-dev-middleware": "^5.0.2",
"babel-loader": "^8.2.2",
"copyfiles": "^2.4.1",
"dotenv": "^10.0.0",
"html-webpack-plugin": "^5.3.2",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-middleware": "^5.1.0"
},
"resolutions": {
"react-select/@emotion/react": "^11.4.1"
}
}