-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.1 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
{
"name": "digjourney.com",
"version": "1.0.0",
"description": "Official website of DigJourney",
"main": "index.js",
"scripts": {
"build": "jalla build index.js",
"start": "node server.js",
"format": "eslint '**/*.js' --fix && prettier --write '**/*.(js|css)'",
"purge": "node -r dotenv/config -e \"require('./lib/purge')('../index.js', console.log)\"",
"test": "prettier --check '**/*.(js|css)' && eslint '**/*.js'"
},
"eslintConfig": {
"extends": [
"standard"
],
"rules": {
"indent": "off",
"space-before-function-paren": "off"
}
},
"engines": {
"node": "18.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeandconspire/digjourney.com.git"
},
"documentify": {
"transform": [
[
"./lib/document.js",
{
"order": "end"
}
]
]
},
"author": "code and conspire",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/codeandconspire/digjourney.se/issues"
},
"homepage": "https://github.com/codeandconspire/digjourney.se#readme",
"devDependencies": {
"choo-devtools": "^3.0.4",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.0",
"prettier": "^2.7.1",
"prettier-config-standard": "^5.0.0"
},
"dependencies": {
"@prismicio/client": "^6.7.1",
"@prismicio/richtext": "^2.1.1",
"cccpurge": "^2.0.0",
"choo": "^7.1.0",
"choo-meta": "^2.0.0",
"choo-service-worker": "^3.0.0",
"cloudinary": "^1.32.0",
"date-fns": "^1.30.1",
"focus-visible": "^5.2.0",
"jalla": "^1.0.0-41",
"koa-body": "^5.0.0",
"koa-compose": "^4.1.0",
"koa-route": "^3.2.0",
"nanolru": "^1.0.0",
"nanoraf": "^3.1.0",
"normalize.css": "^8.0.1",
"postcss-custom-properties": "^12.1.9",
"postcss-focus-visible": "^7.1.0",
"postcss-url": "^10.1.3",
"prismic-element": "^2.1.0",
"prismic-richtext": "1.0.3",
"smoothscroll-polyfill": "^0.4.4"
}
}