This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
{
"name": "sidemark-back",
"version": "1.0.0",
"description": "likemark-backend-ts",
"main": "src/server.ts",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bookmarks-parser": "^0.1.2",
"busboy": "^0.2.14",
"connect-busboy": "0.0.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"memfs": "^2.8.0",
"mustache": "^2.3.0",
"npm": "^5.8.0",
"reflect-metadata": "^0.1.12",
"sequelize": "^4.37.6",
"sequelize-typescript": "^0.5.0",
"serializr": "^1.2.0",
"sqlite3": "https://github.com/mapbox/node-sqlite3/tarball/master",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.0",
"@types/jest": "^20.0.8",
"@types/mustache": "^0.8.30",
"@types/node": "^8.10.10",
"@types/sequelize": "^4.27.16",
"eslint-plugin-typescript": "^0.3.0",
"jest": "^20.0.4",
"standard": "^10.0.3",
"ts-jest": "^20.0.14",
"ts-node": "^3.3.0",
"ts-node-dev": "^1.0.0-pre.21",
"tslint": "^5.8.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.8.3",
"typescript-eslint-parser": "^4.0.0"
},
"scripts": {
"start": "ts-node-dev src/main.ts",
"lint": "tslint src/main.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Tower450/typescript-starter-backend.git"
},
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"keywords": [
"typescript-backend"
],
"author": "team-chiru",
"license": "ISC"
}