-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.35 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
{
"name": "melissa",
"version": "1.0.0",
"main": ".dist/index.js",
"author": "radu <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "yarn dev:transpile:once && concurrently \"yarn dev:transpile\" \"yarn dev:server\"",
"dev:server": "nodemon -w .dist -e js,proto,json,cypher,graphql .dist/main.js",
"dev:transpile": "webpack -c .pack/config.dev.js",
"dev:transpile:once": "webpack -c .pack/config.dev.js --no-watch",
"db:migrate:create": "yarn run nephele.create.migration create --skip-verify --prefix TIMESTAMP --name",
"db:seed:create": "yarn run nephele.create.seed create --skip-verify --prefix TIMESTAMP --name"
},
"dependencies": {
"axios": "0.27.2",
"express": "4.18.1",
"graphql": "16.5.0",
"kafkajs": "1.16.0",
"lodash": "4.17.21",
"mariadb": "3.0.0",
"nephele": "git+ssh://[email protected]/prutcommerce/nephele.git#0.1.3",
"rxjs": "7.5.5",
"sequelize": "6.19.0",
"yup": "0.32.11"
},
"devDependencies": {
"@swc/core": "1.2.179",
"concurrently": "7.1.0",
"copy-webpack-plugin": "10.2.4",
"nodemon": "2.0.16",
"raw-loader": "4.0.2",
"regenerator-runtime": "0.13.9",
"source-map-support": "0.5.21",
"swc-loader": "0.2.0",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-merge": "5.8.0"
},
"packageManager": "[email protected]"
}