-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "coding-test",
"version": "1.0.0",
"main": "dist/server.js",
"repository": "[email protected]:CoinCircle/coding-test.git",
"author": "Coincircle Engineering",
"license": "MIT",
"private": false,
"scripts": {
"build:watch": "./node_modules/webpack/bin/webpack.js --config webpack.config.js --env dev --watch",
"start": "nodemon --delay 850ms --watch dist/server.js --exec 'node --inspect=0.0.0.0:9229 dist/server.js'"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/express": "^4.17.12",
"@types/pg": "^8.6.1",
"chai": "^4.3.4",
"esbuild-loader": "^2.13.1",
"glob": "^7.1.7",
"mocha": "^9.0.0",
"nodemon": "^2.0.7",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"assert": "^2.0.0",
"bluebird": "^3.7.2",
"crypto-browserify": "^3.12.0",
"express": "^4.17.1",
"https-browserify": "^1.0.0",
"pg": "^8.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"stream-browserify": "^3.0.0",
"util": "^0.12.4"
}
}