-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "cypto-market-price",
"version": "1.0.0",
"description": "Market price compare",
"main": "index.js",
"repository": "https://github.com/ipiranhaa/crypto-market-price.git",
"author": "iPiranhaa",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.21",
"node-currency-swap": "^1.0.6",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"socket.io": "^2.4.0",
"uglify-es": "^3.1.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.26.7",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.1",
"gulp-sass": "^4.0.2",
"gulp-sequence": "^0.4.6",
"gulp-uglify": "^3.0.2",
"pump": "^1.0.2"
},
"scripts": {
"start": "node app.js",
"start:dev": "nodemon app.js",
"build": "gulp build",
"dev": "gulp dev"
},
"babel": {
"presets": [
"env"
]
},
"resolutions": {
"natives": "1.1.3"
},
"engines": {
"node": "8.17.0"
}
}