-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 866 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
{
"name": "near-control-payment",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"deploy": "cd contract && ./deploy.sh",
"build": "npm run build:contract",
"build:contract": "cd contract && ./build.sh",
"test": "npm run test:unit && npm run test:integration",
"contract:init": "CONTRACT_ID=$(<neardev/dev-account) && near call new_default_meta",
"test:unit": "cd contract && cargo test",
"local:server": "env $(cat .env.local) nodemon ./server/index.js --watch src/server",
"prod:server": "env $(cat .env.production) pm2 start ./server/index.js --name near-control-payments --update-env"
},
"devDependencies": {
"near-cli": "^3.3.0",
"nodemon": "^2.0.19"
},
"dependencies": {
"express": "^4.18.1",
"mysql2": "^2.3.3",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.25.7"
}
}