-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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
{
"name": "mood-diary",
"version": "0.0.1",
"description": "Mood Diary service for Mindtastic",
"type": "module",
"scripts": {
"start": "node --experimental-modules --experimental-specifier-resolution=node app/server.js",
"dev": "npx nodemon -L --experimental-specifier-resolution=node app/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mindtastic/mood-diary.git"
},
"author": "Mindtastic Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/mindtastic/mood-diary/issues"
},
"homepage": "https://github.com/mindtastic/mood-diary#readme",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.20.1",
"uuid": "^8.3.2",
"loglevel": "^1.8.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-syntax-import-assertions": "^7.18.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.16"
}
}