2021-06-23 13:20:20 -05:00
|
|
|
{
|
|
|
|
"name": "zip3",
|
2022-02-21 12:27:10 -05:00
|
|
|
"version": "3.3.2",
|
2022-02-19 23:17:02 -05:00
|
|
|
"license": "MIT",
|
2021-06-23 13:20:20 -05:00
|
|
|
"scripts": {
|
|
|
|
"dev": "NODE_ENV=development node server",
|
|
|
|
"build": "npm-run-all build:schema build:next",
|
|
|
|
"build:next": "next build",
|
2021-08-25 11:58:48 -05:00
|
|
|
"build:schema": "prisma generate --schema=prisma/schema.prisma",
|
2022-02-21 01:01:31 -05:00
|
|
|
"migrate:dev": "prisma migrate dev --create-only",
|
2021-06-23 13:20:20 -05:00
|
|
|
"start": "node server",
|
|
|
|
"lint": "next lint",
|
2021-10-02 22:16:23 -05:00
|
|
|
"seed": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\" --transpile-only prisma/seed.ts"
|
2021-06-23 13:20:20 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@emotion/react": "^11.4.0",
|
|
|
|
"@emotion/styled": "^11.3.0",
|
|
|
|
"@iarna/toml": "2.2.5",
|
2021-10-02 22:16:23 -05:00
|
|
|
"@mui/icons-material": "^5.0.0",
|
|
|
|
"@mui/material": "^5.0.2",
|
|
|
|
"@mui/styles": "^5.0.1",
|
2022-02-12 23:35:36 -05:00
|
|
|
"@prisma/client": "^3.9.2",
|
2022-02-19 23:17:02 -05:00
|
|
|
"@prisma/migrate": "^3.9.2",
|
|
|
|
"@prisma/sdk": "^3.9.2",
|
2021-06-23 13:20:20 -05:00
|
|
|
"@reduxjs/toolkit": "^1.6.0",
|
|
|
|
"argon2": "^0.28.2",
|
|
|
|
"colorette": "^1.2.2",
|
|
|
|
"cookie": "^0.4.1",
|
|
|
|
"copy-to-clipboard": "^3.3.1",
|
|
|
|
"fecha": "^4.2.1",
|
|
|
|
"formik": "^2.2.9",
|
2021-06-23 16:21:34 -05:00
|
|
|
"multer": "^1.4.2",
|
2022-02-19 23:17:02 -05:00
|
|
|
"next": "^12.1.0",
|
2022-02-12 23:35:36 -05:00
|
|
|
"prisma": "^3.9.2",
|
2021-06-23 13:20:20 -05:00
|
|
|
"react": "17.0.2",
|
2022-01-03 18:17:47 -05:00
|
|
|
"react-color": "^2.19.3",
|
2021-06-23 13:20:20 -05:00
|
|
|
"react-dom": "17.0.2",
|
|
|
|
"react-dropzone": "^11.3.2",
|
|
|
|
"react-redux": "^7.2.4",
|
|
|
|
"redux": "^4.1.0",
|
|
|
|
"redux-thunk": "^2.3.0",
|
2022-02-21 01:01:31 -05:00
|
|
|
"uuid": "^8.3.2",
|
2021-06-23 13:20:20 -05:00
|
|
|
"yup": "^0.32.9"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/cookie": "^0.4.0",
|
2021-06-23 16:21:34 -05:00
|
|
|
"@types/multer": "^1.4.6",
|
2021-06-23 13:20:20 -05:00
|
|
|
"@types/node": "^15.12.2",
|
2021-09-25 11:39:51 -05:00
|
|
|
"eslint": "^7.32.0",
|
2021-06-23 13:20:20 -05:00
|
|
|
"eslint-config-next": "11.0.0",
|
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"ts-node": "^10.0.0",
|
|
|
|
"typescript": "^4.3.2"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-09-17 22:39:20 -05:00
|
|
|
"url": "https://github.com/diced/zipline.git"
|
2021-06-23 13:20:20 -05:00
|
|
|
}
|
|
|
|
}
|