-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.02 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": "mob-time",
"version": "1.0.0",
"description": "",
"main": "src/back/index.js",
"scripts": {
"build": "browserify src/front/js/dev/main.js -o src/front/js/dist/bundle.js",
"start": "node src/back/index.js",
"test": "mocha 'test/**/*.js' --reporter spec",
"front-test": "mocha -r esm 'src/front/js/spec/**/*.js' --reporter spec"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel": "^6.23.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"mocha": "^6.1.4",
"node-localstorage": "^1.3.1",
"redis": "^2.8.0",
"request": "^2.88.0",
"watchify": "^3.11.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"async": "^3.1.0",
"babelify": "^10.0.0",
"esm": "^3.2.25"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
}