-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.54 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
{
"name": "spelljack",
"version": "1.0.0",
"description": "Comfortably check multiple wordpress articles for spelling errors and manage those errors in one place",
"scripts": {
"server": "deno run --allow-net --allow-env --allow-read ./server/main.ts",
"server:dev": "denon run --allow-net --allow-env --allow-read ./server/main.ts",
"dev": "rm -rf dist/*.* && npx parcel src/index.html",
"dist": "rm -rf dist/*.* && npx parcel build src/index.html --public-url ./",
"docker:build": "docker build --no-cache -t ideadapt/spelljack:1.0.0 .",
"docker:push": "docker push ideadapt/spelljack:1.0.0",
"fly:secrets": "cat server/.env | flyctl secrets import",
"fly:deploy": "flyctl deploy",
"docker:deploy": "npm run dist && npm run docker:build && npm run docker:push && npm run fly:deploy",
"test": "npx mocha test/*.mjs",
"test:watch": "nodemon --watch test --watch src --exec mocha test/*.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ideadapt/spelljack.git"
},
"engines": {
"node": ">=19"
},
"browserslist": "> 30%, last 2 versions, not dead",
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ideadapt/spelljack/issues"
},
"homepage": "https://github.com/ideadapt/spelljack#readme",
"devDependencies": {
"buffer": "^6.0.3",
"parcel": "^2.8.0",
"postcss": "^8.4.16",
"process": "^0.11.10",
"tailwindcss": "^3.1.8"
},
"dependencies": {
"alpinejs": "^3.10.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.20"
}
}