This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.06 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
{
"name": "henry-brown-website",
"version": "2.0.0",
"description": "Personal website hosted at https://henrybrown0.com",
"main": "dist/server.js",
"scripts": {
"start": "yarn cp-templates && concurrently \"yarn:watch-*\" & yarn dev",
"dev": "NODE_ENV=development nodemon dist/server.js -e js,squirrelly --delay 0.5",
"watch-ts": "yarn build-ts --watch",
"watch-sass": "yarn build-sass --watch",
"build": "yarn cp-templates && yarn build-ts && yarn build-sass",
"cp-templates": "mkdir dist/templates -p && cp src/templates dist -r",
"build-ts": "tsc --project ./config/tsconfig.json",
"build-sass": "mkdir -p dist/static/styles && node-sass --omit-source-map-url --error-bell --output-style compressed src/styles/index.scss dist/static/styles/index.css",
"setup-db": "node ./setup.js",
"test": "yarn test-types && yarn test-lint",
"test-types": "yarn build-ts --noEmit",
"test-lint": "eslint -c ./config/.eslintrc.json 'src/**.ts'"
},
"author": "HenryBrown0",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": "12.x",
"yarn": "1.x"
},
"dependencies": {
"@sentry/node": "5.15.2",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"graphql-request": "^1.8.2",
"helmet": "^3.21.2",
"ip-cidr": "^2.0.11",
"markdown-it": "^10.0.0",
"pg": "^8.0.2",
"squirrelly": "^7.9.0",
"tinycolor2": "^1.4.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/helmet": "^0.0.45",
"@types/ip-address": "^5.8.2",
"@types/jsbn": "^1.2.29",
"@types/markdown-it": "^0.0.9",
"@types/pg": "^7.14.3",
"@types/squirrelly": "^7.1.0",
"@types/tinycolor2": "^1.4.2",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"bulma": "^0.8.1",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"typescript": "^3.7.4"
}
}