-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "commitmonster",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"start": "cross-env NODE_ENV=dev babel-node ./src/index.js",
"dev": "cross-env NODE_ENV=dev nodemon",
"build": "babel src -d dist"
},
"babel": {
"presets": [
[
"@babel/env"
]
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"corejs": 3
},
"@babel/plugin-syntax-dynamic-import"
]
]
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"@prisma/client": "^2.22.1",
"aws-sdk": "^2.912.0",
"axios": "^0.21.1",
"babel-jest": "^24.9.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/eslint-parser": "^7.13.14",
"@babel/node": "^7.13.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/runtime-corejs3": "^7.13.10",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.0.4",
"prisma": "^2.22.1"
}
}