-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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": "project-carbon",
"version": "1.0.0",
"description": "Backend for Carbon credits market place",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-app": "npm run build-client && npm start",
"build-client": "mkdir -p public && cd client && npm run build-app && cd ..",
"start": "node server.js",
"dev": "nodemon server.js --host 0.0.0.0",
"format": "prettier --write 'server.js' 'routes/*.js' 'models/*.js' 'config/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Henri-99/Project-Carbon.git"
},
"author": "Tatenda",
"license": "ISC",
"bugs": {
"url": "https://github.com/Henri-99/Project-Carbon/issues"
},
"homepage": "https://github.com/Henri-99/Project-Carbon#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"cors": "^2.8.5",
"express": "^4.18.1",
"sequelize": "^6.23.0",
"sqlite3": "^5.1.1",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"web3": "^1.8.0"
},
"devDependencies": {
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
}
}