This repository was archived by the owner on Aug 6, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.7 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
{
"name": "react_ecommerce_with_typescript_backend",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engines": {
"node": ">= 12.13 <13"
},
"devDependencies": {
"@types/jest": "~25.1.2",
"@types/node": "~12.12.27",
"@typescript-eslint/eslint-plugin": "~2.19.2",
"@typescript-eslint/parser": "~2.19.2",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.10.0",
"eslint-plugin-jest": "~23.7.0",
"jest": "~25.1.0",
"prettier": "~1.19.1",
"rimraf": "~3.0.2",
"ts-jest": "~25.2.0",
"tsutils": "~3.17.0",
"typescript": "~3.8.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"dev": "nodemon ./build/src/server.js"
},
"author": "Jakub Synowiec <github@jakubsynowiec.info>",
"license": "Apache-2.0",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-fileupload": "^1.1.3",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.3.9",
"@types/mongoose": "^5.7.14",
"@types/multer": "^1.4.3",
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"cloudinary": "^1.21.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"express-validator": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.10",
"multer": "^1.4.2",
"stripe": "^8.52.0",
"tslib": "~1.10.0",
"uuid": "^8.0.0"
}
}