-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
92 lines (92 loc) · 2.53 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
{
"name": "remake-framework",
"version": "2.4.5",
"description": "",
"main": "index.js",
"engines": {
"node": ">=16.15 <17 || >18"
},
"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"
},
"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.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"change-case": "^3.1.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"crostini": "^1.5.1",
"deep-extend": "^0.6.0",
"deepdash": "^5.3.9",
"directory-tree": "^2.4.0",
"esm": "^3.2.25",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-session": "^1.17.3",
"extract-zip": "^1.7.0",
"glob": "^7.2.3",
"handlebars": "^4.7.6",
"handlebars-helpers": "^0.9.8",
"is-valid-domain": "0.0.17",
"jsdom": "^16.7.0",
"jsonfile": "^5.0.0",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mailgun.js": "^3.7.3",
"mkdirp": "^0.5.6",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"nanoid": "^2.1.11",
"normalize-url": "^5.3.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"path-match": "^1.2.4",
"rimraf": "3.0.0",
"session-file-store": "^1.5.0",
"sortablejs": "^1.15.0",
"upath": "^1.2.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^5.3.1",
"esbuild": "^0.14.54",
"husky": "^6.0.0",
"nodemon": "^3.0.1",
"prettier": "2.2.1",
"pretty-quick": "^3.1.3",
"shelljs": "^0.8.4"
}
}