forked from diced/zipline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
{
"name": "zipline-next",
"version": "2.8.1",
"private": true,
"dependencies": {
"@dicedtomato/colors": "^1.0.3",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"bcrypt": "^5.0.0",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"crypto-js": "^4.0.0",
"fastify": "^3.5.0",
"fastify-cookie": "^4.1.0",
"fastify-cors": "^4.1.0",
"fastify-decorators": "^3.2.3",
"fastify-favicon": "^3.0.0",
"fastify-mongodb": "^2.0.1",
"fastify-multipart": "^3.2.0",
"fastify-rate-limit": "github:dicedtomatoreal/fastify-rate-limit",
"fastify-static": "^3.2.1",
"fastify-typeorm-plugin": "^2.1.2",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"material-ui-dropzone": "^3.5.0",
"next": "^9.5.4",
"pg": "^8.4.1",
"qrcode": "^1.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"speakeasy": "^2.0.0",
"toml-patch": "^0.2.3",
"typeorm": "^0.2.28"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "ts-node src",
"dev:verbose": "VERBOSE=true ts-node src",
"build": "next build && tsc -p .",
"start": "NODE_ENV=production node dist",
"start:verbose": "NODE_ENV=production VERBOSE=true node dist"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/crypto-js": "^3.1.47",
"@types/mongodb": "^3.5.27",
"@types/node": "^14.11.2",
"@types/qrcode": "^1.3.5",
"@types/react": "^16.9.49",
"@types/react-redux": "^7.1.9",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-plugin-react": "^7.21.3",
"mongodb": "^3.6.2",
"prettier": "2.1.2",
"release": "^6.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}