forked from colorstackorg/podspace-server-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.35 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.35 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
{
"name": "@colorstack/podspace-server",
"author": "ColorStack, Inc.",
"license": "MIT",
"version": "0.1.0",
"description": "Skeleton backend code for the Sprout Fellowship '21 project.",
"scripts": {
"build": "tsc",
"copy-env:dev": "openssl base64 < ./.env.development | tr -d '\n' | pbcopy",
"copy-env:prod": "openssl base64 < ./.env.production | tr -d '\n' | pbcopy",
"dev": "env-cmd -f ./.env.development ts-node-dev src/index.ts",
"format": "prettier --ignore-path .gitignore --list-different \"**/*.+(ts|tsx)\"",
"format:fix": "prettier --ignore-path .gitignore --write \"**/*.+(ts|tsx)\"",
"lint": "eslint --ignore-path .gitignore . --ext .ts,.tsx src",
"lint:fix": "eslint --ignore-path .gitignore . --ext .ts,.tsx src --fix",
"test": "env-cmd -f ./.env.development jest --runInBand --verbose"
},
"dependencies": {
"aws-sdk": "^2.978.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mathjs": "^9.5.1",
"mongodb": "^3.6.9",
"mongoose": "^5.12.13",
"multer": "^1.4.3",
"twilio": "^3.67.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.12",
"@types/jest-in-case": "^1.0.3",
"@types/jsonwebtoken": "^8.5.4",
"@types/multer": "^1.4.7",
"@types/node": "^16.10.9",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"env-cmd": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-rami": "^1.0.9",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"jest": "^27.0.4",
"jest-in-case": "^1.0.2",
"prettier": "^2.3.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
}
}