-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "mfa-finland-api",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/zimmerman-team/MFA-Finland-API.git"
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"immer": "^9.0.5",
"lodash": "^4.17.21",
"nodemailer": "^6.5.0",
"nodemon": "^2.0.2",
"pretty-quick": "^2.0.1",
"ts-node": "^8.6.2"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/helmet": "^0.0.45",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.11",
"eslint-config-airbnb-typescript-prettier": "^1.4.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"paths.macro": "^2.0.2",
"prettier": "^1.19.1",
"react-docgen-typescript-loader": "^3.6.0",
"react-is": "^16.13.0",
"source-map-explorer": "^2.3.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.2"
},
"scripts": {
"start-prod": "NODE_ENV=production ts-node --project nodetsconfig.json server/index.ts",
"start": "nodemon --watch server/ --exec ts-node --project nodetsconfig.json server/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release": {
"branches": [
"main",
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"proxy": "http://localhost:4200"
}