-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "headcoach",
"version": "1.0.0",
"description": "Motivator service for mindtastic",
"directories": {
"doc": "doc"
},
"type": "module",
"scripts": {
"dev": "nodemon --legacy-watch './**/*.ts' -e ts,js,json --exec 'node --experimental-specifier-resolution=node --trace-warnings --loader ts-node/esm' src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mindtastic/motivator-service.git"
},
"author": "Mindtastic",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/mindtastic/motivator-service/issues"
},
"homepage": "https://github.com/mindtastic/motivator-service#readme",
"dependencies": {
"@types/loglevel": "^1.6.3",
"axios": "^0.27.2",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"loglevel": "^1.8.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.1",
"umzug": "^3.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"nodemon": "^2.0.18",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}