-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "lyre",
"version": "0.0.1",
"description": "A web application to help storytellers",
"author": "Esteban Manchado Velázquez <[email protected]>",
"scripts": {
"start": "cd build/ && node index.js",
"startdev": "cd build/ && nodemon index.js",
"watchfe": "tsc -w -p frontend --outFile public/js/compiled/lyre.js",
"watchbe": "babel -w --modules common -d build/ backend/",
"compilefe": "tsc -p frontend --outFile public/js/compiled/lyre.js",
"compilebe": "babel --modules common -d build/ backend/",
"compile": "npm run compilefe && npm run compilebe"
},
"dependencies": {
"body-parser": "^1.15.0",
"config": "^1.20.1",
"cookie-parser": "^1.4.1",
"ejs": "^2.4.1",
"express": "^4.13.4",
"express-layout": "^0.1.0",
"express-session": "^1.13.0",
"formidable": "^1.0.17",
"fs-extra": "^0.30.0",
"nodemon": "^1.9.1",
"q": "^1.4.1",
"ws": "^3.3.1",
"sqlite3": "~4.0.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"robohydra": "^0.6.0",
"typescript": "^1.8.10"
},
"repository": {
"type": "git",
"url": "https://github.com/emanchado/lyre.git"
},
"license": "MIT"
}