-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "sight-reader",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev-server": "nodemon index.js --watch app/ --ignore app/client/",
"build": "babel app/client --out-file public/main.js",
"watch": "babel app/client --out-file public/main.js --source-maps --watch",
"dev": "concurrently --kill-others \"npm run watch\" \"npm run dev-server\"",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidgilbertson/sight-reader.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidgilbertson/sight-reader/issues"
},
"engines": {
"node": "^6.3.0",
"npm": "^3.8.0"
},
"homepage": "https://github.com/davidgilbertson/sight-reader#readme",
"dependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.11.6",
"core-js": "^2.4.1",
"express": "^4.14.0"
},
"devDependencies": {
"concurrently": "^2.2.0"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}