-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "narrows",
"version": "0.0.1",
"description": "NARRate On Web System",
"license": "BSD",
"dependencies": {
"babel-brunch": "^6.0.6",
"babel-cli": "^6.14.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.15.2",
"config": "^1.21.0",
"connect-sqlite3": "^0.9.8",
"db-migrate": "^0.10.0-beta.20",
"db-migrate-mysql": "^1.1.10",
"ejs": "3.1.6",
"express": "^4.14.0",
"express-mysql-session": "1.2.3",
"express-session": "^1.14.1",
"formidable": "^1.0.17",
"fs-extra": "^0.30.0",
"nodemailer": "^6.4.16",
"prosemirror-inputrules": "^1.0.2",
"prosemirror-keymap": "^1.0.1",
"prosemirror-menu": "^1.0.5",
"prosemirror-model": "^1.7.0",
"prosemirror-schema-basic": "^1.0.1",
"prosemirror-schema-list": "^1.0.3",
"prosemirror-view": "^1.9.4",
"q": "^1.4.1",
"rss": "^1.2.1",
"sharp": "^0.25.4",
"sqlite3": "^4.0.0",
"yarn": "^1.22.4"
},
"scripts": {
"start": "node build/index.js",
"startdev": "nodemon build/index.js",
"buildbe": "babel --modules common -d build/ src/backend",
"watchbe": "babel -w --modules common -d build/ src/backend",
"buildfe": "brunch build",
"watchfe": "brunch watch",
"build": "npm run buildbe && npm run buildfe",
"test": "NODE_ENV=test NODE_CONFIG_DIR=../config ava",
"watchtest": "NODE_ENV=test NODE_CONFIG_DIR=../config ava --watch",
"updatedbmigrateconf": "node update-db-migrate-conf.js",
"dbmigrate": "npm run updatedbmigrateconf && db-migrate up"
},
"devDependencies": {
"ava": "^0.16.0",
"brunch": "^2.10.17",
"elm-brunch": "^0.12.0",
"elm-test": "^0.17.3",
"nodemon": "^1.10.2",
"robohydra": "^0.6.5"
},
"ava": {
"require": [
"babel-register"
]
}
}