-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 2.06 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
42
43
44
45
46
{
"name": "opioner-home",
"version": "6.0.0",
"description": "Project to let people share their opinions freely",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node index.js",
"build": "./node_modules/.bin/esbuild ./public/js/**.js --bundle --minify --sourcemap --outdir=./dist --target=chrome100,firefox99,safari11 && ./node_modules/.bin/esbuild ./public/css/**.css --bundle --minify --sourcemap --outdir=./dist --target=chrome100,firefox99,safari11 && ./node_modules/.bin/esbuild ./public/css/home/**.css --bundle --minify --sourcemap --outdir=./dist --target=chrome100,firefox99,safari11 && ./node_modules/.bin/esbuild ./public/css/index/**.css --bundle --minify --sourcemap --outdir=./dist --target=chrome100,firefox99,safari11 && ./node_modules/.bin/esbuild ./public/css/profile/**.css --bundle --minify --sourcemap --outdir=./dist --target=chrome100,firefox99,safari11 && ./node_modules/.bin/esbuild ./public/css/status/**.css --bundle --minify --sourcemap --outdir=./dist --target=chrome100,firefox99,safari11 && ./node_modules/.bin/esbuild ./public/css/password-form/**.css --bundle --minify --sourcemap --outdir=./dist --target=chrome100,firefox99,safari11",
"test": "echo \"no test specified\" && exit 0",
"swagger": "node generate-swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/souravs17031999/opioner-home.git"
},
"keywords": [
"opioner"
],
"author": "sourav kumar",
"license": "ISC",
"bugs": {
"url": "https://github.com/souravs17031999/opioner-home/issues"
},
"homepage": "https://github.com/souravs17031999/opioner-home#readme",
"dependencies": {
"and": "^0.0.3",
"body-parser": "^1.20.1",
"config": "^3.3.7",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.17.3",
"express-rate-limit": "^6.6.0",
"helmet": "^5.0.2",
"morgan": "^1.10.0",
"request": "^2.88.2",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.5.0",
"winston": "^3.8.1"
},
"devDependencies": {
"esbuild": "^0.14.36"
}
}