forked from cyclic-software/starter-express-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "starter-express-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "browserify public/Controllers/IndexController.js -o public/bundle.js -t [ babelify --presets [@babel/preset-env] ]",
"start": "node index.mjs",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclic-software/starter-express-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cyclic-software/starter-express-api/issues"
},
"homepage": "https://github.com/cyclic-software/starter-express-api#readme",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babelify": "^10.0.0",
"biginteger": "^1.0.3",
"browserify": "^17.0.0",
"chalk": "^2.4.2",
"compress-json": "^3.0.0",
"dotenv": "^16.4.3",
"drag-drop-touch": "^1.3.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"pg": "^8.11.3",
"secure-remote-password": "^0.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"babelify": "^10.0.0"
}
}