-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.23 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
47
48
49
50
51
52
{
"name": "cssweng",
"productName": "Jaelle Residences POS",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "mocha --exit",
"start": "electron .",
"build": "electron-packager . --overwrite --asar",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francheska-vicente/cssweng.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/francheska-vicente/cssweng/issues"
},
"homepage": "https://github.com/francheska-vicente/cssweng#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"calendar": "^0.1.1",
"connect-mongo": "^4.4.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"hbs": "^4.1.2",
"mongoose": "^5.13.5"
},
"devDependencies": {
"chai": "^4.3.4",
"electron": "^13.1.7",
"electron-builder": "^22.11.7",
"electron-packager": "^15.3.0",
"mocha": "^9.1.0",
"supertest": "^6.1.6"
},
"build": {
"appId": "com.cssweng.s11.team2.pos",
"target": "NSIS",
"directories": {
"output": "build"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
}
}
}