-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "cpsc349-project2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"ava": {
"require": [
"esm"
]
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon _remake/server.js --watch ./",
"remake-build": "npx esbuild _remake/client-side/index.js --bundle --minify --sourcemap=external --outdir=_remake/dist/remake/js --target=edge18 --format=iife --global-name=Remake && mv _remake/dist/remake/js/index.js _remake/dist/remake/js/remake.min.js && mv _remake/dist/remake/js/index.js.map _remake/dist/remake/js/remake.min.js.map && echo '//# sourceMappingURL=remake.min.js.map' >> _remake/dist/remake/js/remake.min.js",
"test": "ava",
"tailwind": "tailwindcss -i ./src/input.css -o ./app/assets/css/main.css --watch",
"start": "npm-run-all --parallel dev tailwind",
"pocketbase": "./pocketbase serve",
"esbuild": "esbuild src/app.jsx --outfile=pb_public/app.js --watch",
"browsersync":"browser-sync https://localhost:8090 --files 'pb_public/**/*'"
},
"nodemonConfig": {
"ignore": [
".cache/",
"_remake/.sessions",
"_remake/client-side",
"_remake/dist",
"app/",
"node_modules/"
],
"ext": "js,json,svg,png,gif,jpg,jpeg,ico,mp3,mp4,mpg,mpeg,ogg,otf,ttf,woff,woff2,txt,webp"
},
"keywords": [],
"author": "",
"license": "MIT",
"alias": {
"remake-framework": "./_remake/client-side/index.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"archiver": "^3.1.1",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"change-case": "^3.1.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"cross-env": "^7.0.3",
"crostini": "^1.0.3",
"daisyui": "^2.39.1",
"deep-extend": "^0.6.0",
"deepdash": "^5.3.7",
"directory-tree": "^2.2.3",
"esm": "^3.2.25",
"express": "^4.17.0",
"express-fileupload": "^1.1.6",
"express-session": "^1.16.2",
"extract-zip": "^1.6.7",
"glob": "^7.1.4",
"handlebars": "^4.7.6",
"handlebars-helpers": "^0.10.0",
"is-valid-domain": "0.0.17",
"jsdom": "^16.5.3",
"jsonfile": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mailgun.js": "^3.5.9",
"mkdirp": "^0.5.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nanoid": "^2.0.3",
"normalize-url": "^5.3.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path-match": "^1.2.4",
"rimraf": "3.0.0",
"session-file-store": "^1.3.1",
"shelljs": "^0.8.4",
"sortablejs": "^1.10.1",
"tw-elements": "^1.0.0-alpha12",
"upath": "^1.2.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.15.0",
"esbuild": "^0.14.54",
"husky": "^6.0.0",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"shelljs": "^0.8.3",
"tailwindcss": "^3.2.0"
}
}