-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.67 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.67 KB
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": "express-test",
"version": "0.0.0",
"private": true,
"repository:": "https://github.com/fastcoding/Example-LiquidCore-Issue.git",
"scripts": {
"start": "node ./bin/www",
"build-cli": "browserify -d -t [ babelify --no-sourceMaps ] -o public/js/index.js client/index.js",
"build-svr": "browserify --node -o server.js bin/www",
"install-svr": "npm run build-svr && fsbin copy server.js TestLiquidCore/app/src/main/res/raw/server.js",
"install-cli": "npm run build-cli && ( fsbin emptyDir dist/web; fsbin ensureDir dist/web/public ;fsbin ensureDir dist/web/views; fsbin copy public dist/web/public ; fsbin copy views dist/web/views; dtz -o TestLiquidCore/app/src/main/assets/web.zip dist/web )",
"link-lqc": "fsbin ensureSymlinkSync $PWD/LiquidCore/LiquidCoreAndroid TestLiquidCore/LiquidCoreAndroid && fsbin ensureSymlinkSync $PWD/LiquidCore/deps TestLiquidCore/deps",
"install": "npm run link-lqc && npm run install-svr && npm run install-cli",
"android": "cd testLiquidCore;./gradlew installDebug"
},
"dependencies": {
"base64-img": "^1.0.4",
"bufferutil": "^4.0.0",
"cookie-parser": "~1.4.3",
"core-js": "^2.5.7",
"debug": "^2.6.9",
"express": "~4.16.3",
"express-ws": "^4.0.0",
"glob": "^7.1.2",
"http-errors": "~1.6.2",
"lodash": "^4.17.10",
"morgan": "~1.9.0",
"negotiator": "^0.6.1",
"pug": "^2.0.0-beta11",
"simple-websocket": "^7.0.2",
"underscore": "^1.9.1",
"utf-8-validate": "^5.0.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"dtz": "^1.0.2",
"express-ws-rpc": "0.0.3",
"fsbin": "^1.0.7"
}
}