-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.2 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
77
78
{
"name": "dotcloud",
"version": "1.0.0",
"description": "Forget .env files",
"main": "index.js",
"author": "Hemanth Krishna",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc && npm run copy-assets",
"copy-assets": "cp -ripv src/public/ dist/public/",
"start": "node dist/index.js",
"tailwind:css": "postcss src/public/styles/tailwind.css -o src/public/styles/style.css",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.33",
"@types/cors": "^2.8.9",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.9",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.20",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/passport": "^1.0.5",
"@types/passport-jwt": "^3.0.3",
"@types/serve-favicon": "^2.5.2",
"autoprefixer": "^10.2.3",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.32",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.22.3",
"sequelize-typescript": "^1.1.0",
"serve-favicon": "^2.5.0",
"tailwindcss": "^2.0.2",
"uuid-random": "^1.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"./node_modules/.bin/eslint --ignore-path .gitignore . --fix",
"git add"
]
}
}