-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 1.94 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"format": "npx prettier --write .",
"build:css": "node-sass ./scss -o ./app/styles --output-style compressed",
"dev:css": "npm run build:css && node-sass -rw ./scss -o ./app/styles",
"build": "npm run format && remix build",
"dev": "npm run format && cross-env NODE_ENV=development netlify dev",
"postinstall": "remix setup node"
},
"dependencies": {
"@editorjs/checklist": "^1.3.0",
"@editorjs/code": "^2.7.0",
"@editorjs/delimiter": "^1.2.0",
"@editorjs/embed": "^2.5.1",
"@editorjs/header": "^2.6.2",
"@editorjs/image": "^2.6.2",
"@editorjs/inline-code": "^1.3.1",
"@editorjs/link": "^2.4.1",
"@editorjs/list": "^1.7.0",
"@editorjs/marker": "^1.2.2",
"@editorjs/quote": "^2.4.0",
"@editorjs/raw": "^2.3.1",
"@editorjs/simple-image": "^1.4.1",
"@editorjs/table": "^2.0.2",
"@editorjs/warning": "^1.2.0",
"@netlify/functions": "^0.10.0",
"@prisma/client": "^3.15.1",
"@remix-run/netlify": "^1.1.1",
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"aws-sdk": "^2.1148.0",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"editorjs-html": "^3.4.2",
"editorjs-react-renderer": "^3.2.0",
"express": "^4.18.1",
"marked": "^4.0.16",
"multer": "^1.4.5-lts.1",
"node-sass": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-editor-js": "^2.0.6",
"remix": "^1.5.1",
"remix-utils": "^3.2.0",
"rxjs": "^7.5.5",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.5.1",
"@types/node": "^17.0.38",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"cross-env": "^7.0.3",
"prettier": "2.6.2",
"prisma": "^4.0.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}