-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.79 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.79 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "typescript-handlebars-realworld",
"version": "1.0.0",
"description": "",
"main": "build/server.js",
"scripts": {
"assets": "parcel build \"assets/js/entry/*.js\" --out-dir public/build --public-url ./",
"assets:clean": "rimraf public/build",
"build": "run-p assets ts",
"dev": "node ./scripts/dev.js",
"ts": "tsc -p tsconfig.build.json",
"ts:check": "tsc --noEmit",
"repl": "node --experimental-repl-await -r ts-node/register scripts/repl.js",
"start": "node build/server.js",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run -t=false",
"lint": "eslint \"**/*.js\" \"**/*.ts\"",
"prettier:check": "prettier --check \"**/*.js\" \"**/*.ts\"",
"prettier:write": "prettier --write \"**/*.js\" \"**/*.ts\"",
"test": "jest -c integration/jest.config.js --forceExit --detectOpenHandles",
"test:watch": "yarn test --watch",
"test:ci": "run-s lint prettier:check test",
"create-databases": "node ./scripts/create-databases.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobstern/typescript-handlebars-realworld.git"
},
"author": "Jacob Stern",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacobstern/typescript-handlebars-realworld/issues"
},
"homepage": "https://github.com/jacobstern/typescript-handlebars-realworld#readme",
"devDependencies": {
"@types/cheerio": "0.22.11",
"@types/jest": "24.0.12",
"@types/tough-cookie": "2.3.5",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"axios": "^0.18.0",
"axios-cookiejar-support": "^0.4.2",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"jest-runner": "^24.8.0",
"livereload": "^0.7.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"tough-cookie": "^3.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"ts-node-dev": "github:whitecolor/ts-node-dev#0f90573b0ee0cf3981ad3017df0848fd7cf192fd",
"yarn": "^1.16.0"
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/bcrypt": "3.0.0",
"@types/compression": "0.0.36",
"@types/connect-ensure-login": "0.1.4",
"@types/connect-flash": "0.0.34",
"@types/cookie-parser": "1.4.1",
"@types/csurf": "1.9.35",
"@types/express": "4.16.1",
"@types/express-handlebars": "0.0.31",
"@types/express-session": "1.15.12",
"@types/getenv": "0.7.0",
"@types/handlebars": "4.1.0",
"@types/helmet": "0.0.43",
"@types/marked": "0.6.5",
"@types/morgan": "1.7.35",
"@types/node": "11.13.8",
"@types/passport": "1.0.0",
"@types/passport-local": "1.0.33",
"@types/serve-favicon": "2.2.30",
"@types/slug": "0.9.1",
"@types/uniqid": "4.1.3",
"bcrypt": "^3.0.6",
"class-validator": "^0.9.1",
"compression": "^1.7.4",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"csurf": "^1.10.0",
"express": "^5.0.0-alpha.7",
"express-handlebars": "^3.0.2",
"express-session": "^1.16.1",
"getenv": "^0.7.0",
"handlebars": "^4.1.2",
"helmet": "^3.16.0",
"http-status-codes": "^1.3.2",
"marked": "^0.6.2",
"morgan": "^1.9.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.10.0",
"reflect-metadata": "^0.1.10",
"serve-favicon": "^2.5.0",
"slug": "^1.1.0",
"turbolinks": "^5.2.0",
"typeorm": "0.2.16",
"typeorm-store": "^1.2.0",
"typescript": "^3.4.5",
"uniqid": "^5.0.3",
"whatwg-fetch": "^3.0.0"
},
"browserslist": [
"last 1 version",
"> 0.2%",
"not dead"
]
}