-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "skb3",
"version": "1.0.0",
"description": "skillbranch lesson 3",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --watch --out-dir build",
"start": "nodemon --watch public --watch src build/index.js",
"dev": "concurrently --kill-others \"npm run build\" \"npm run start\"",
"createPokemons": "node src\\pokemonsGetter.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konstantinov90/skb3.git"
},
"author": "konstantinov",
"license": "ISC",
"bugs": {
"url": "https://github.com/konstantinov90/skb3/issues"
},
"homepage": "https://github.com/konstantinov90/skb3#readme",
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-cli": "^6.18.0"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"express": "^4.14.0",
"lodash": "^4.17.0",
"request": "^2.78.0"
}
}