-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.14 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
{
"name": "scalar",
"version": "0.0.0",
"description": "Dot HQ Website",
"main": "app/main.ts",
"repository": "https://github.com/dothq/scalar.git",
"author": "Dot HQ <[email protected]>",
"license": "MPL-2.0",
"private": true,
"scripts": {
"start": "node --enable-source-maps .scalar/main.js",
"build": "node scripts/build",
"dev": "cross-env NODE_ENV=develop yarn build && cross-env NODE_ENV=develop yarn start",
"watch": "nodemon -e js,ts,tsx,scss,ftl,yml --exec \"yarn dev\"",
"generate:l10n": "node scripts/l10n",
"test:firefox": "BROWSER=firefox jest --detectOpenHandles",
"test:chrome": "BROWSER=chrome jest --detectOpenHandles",
"test": "yarn test:firefox && yarn test:chrome"
},
"dependencies": {
"@dothq/id": "^1.0.1",
"@fastify/compress": "^6.2.0",
"@fastify/cookie": "^8.3.0",
"@fastify/error": "^3.0.0",
"@fastify/formbody": "^7.3.0",
"@fastify/static": "^6.5.0",
"@fluent/bundle": "^0.17.1",
"@fluent/langneg": "^0.6.2",
"@fluent/sequence": "^0.7.0",
"@fluent/syntax": "^0.18.1",
"american-british-english-translator": "^0.2.1",
"axios": "^1.1.3",
"clsx": "^1.2.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"extract-stack": "^3.0.0",
"fastify": "^4.9.2",
"glob": "^8.0.3",
"image-size": "^1.0.2",
"intl-parse-accept-language": "^1.0.0",
"node-html-parser": "^6.1.1",
"object-traversal": "^1.0.1",
"preact": "^10.11.2",
"preact-render-to-string": "^5.2.6",
"prettier": "^3.0.0",
"stripe": "^10.15.0",
"ua-parser-js": "^0.7.33",
"yaml": "^2.1.3"
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/glob": "^8.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^18.11.7",
"@types/tcp-port-used": "^1.0.1",
"@types/ua-parser-js": "^0.7.36",
"broken-link-checker": "^0.7.8",
"chalk": "^5.1.2",
"compare-versions": "^6.0.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"esbuild": "^0.15.12",
"fs-extra": "^10.1.0",
"html-prettify": "^1.0.7",
"jest": "^29.6.1",
"locate-app": "^2.0.0",
"nodemon": "^2.0.22",
"puppeteer": "^20.9.0",
"rimraf": "^3.0.2",
"sass": "^1.55.0",
"tcp-port-used": "^1.0.2",
"ts-jest": "^29.1.1",
"typescript": "^4.8.4"
}
}