forked from samo2/mob-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "mob-time",
"version": "1.0.0",
"description": "",
"main": "src/back/app.js",
"scripts": {
"bundle": "watchify src/front/js/mob.js -o public/js/bundle.js",
"build": "browserify src/front/js/mob.js -o public/js/bundle.js",
"start": "node src/back/app.js",
"dev": "nodemon src/back/app.js",
"test": "mocha -r esm 'spec/**/*.js' --reporter spec",
"cy:run": "cypress run",
"cy:open": "cypress open",
"gui-test": "start-server-and-test start http://localhost:3000 cy:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.3",
"browserify": "^17.0.0",
"dotenv": "^16.3.1",
"express": "^4.21.1",
"fs": "0.0.1-security",
"http": "0.0.0",
"node-localstorage": "^3.0.5",
"nyc": "^17.1.0",
"path": "^0.12.7",
"pug": "^3.0.3",
"redis": "^4.6.12",
"request": "^2.88.2",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"slugify": "^1.6.6",
"socket.io": "^4.8.0"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.25.8",
"async": "^3.2.6",
"babelify": "^10.0.0",
"chai": "^4.4.1",
"cypress": "^13.15.0",
"esm": "^3.2.25",
"mocha": "^10.7.3",
"nodemon": "^3.1.0",
"start-server-and-test": "^2.0.3",
"watchify": "^4.0.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
}