forked from wilo087/pethome_raffle_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 965 Bytes
/
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
{
"name": "pethomerd-raffle-backend",
"version": "1.0.0",
"description": "PetHomeRD Raffle Backend",
"main": "src/server.js",
"author": "Wilowayne De La Cruz G. <wilo0087@gmail.com>",
"license": "MIT Wilowayne De La Cruz",
"private": true,
"scripts": {
"start": "yarn nodemon --exec babel-node src/",
"start:prod": "ENV=production yarn babel-node src/",
"test": "yarn jest"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mysql2": "^2.1.0",
"sequelize": "^6.2.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/plugin-proposal-throw-expressions": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.10.3",
"babel-jest": "^24.3.1",
"nodemon": "^2.0.4"
}
}