-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.47 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "rest-bundle",
"version": "0.20.2",
"description": "RestBundle is a Javascript base class for a REST resource bundles that can be plugged into a nodejs express application",
"main": "index.js",
"directories": {
"test": "test",
"dist": "dist",
"src": "src",
"doc": "doc"
},
"dependencies": {
"axios": "^0.16.1",
"body-parser": "^1.14.1",
"bufferutil": "3.0.1",
"ejs": "^2.5.6",
"express": "^4.13.3",
"file-loader": "^0.11.1",
"lodash": "^4.17.4",
"style-loader": "^0.17.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"utf-8-validate": "3.0.2",
"vue": "^2.4.2",
"vue-axios": "^2.0.2",
"vue-loader": "^12.2.2",
"vue-router": "^2.5.3",
"vue-template-compiler": "^2.4.2",
"vuetify": "^0.14.5",
"vuex": "^2.3.1",
"winston": "^2.3.1",
"ws": "3.0.0"
},
"devDependencies": {
"concurrently": "^3.2.0",
"css-loader": "^0.28.0",
"mocha": "^3.2.0",
"should": "^11.2.0",
"supertest": "^3.0.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"cross-env": "^3.0.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.2.0"
},
"engine-strict": true,
"engines": {
"node": ">=6.11.0"
},
"scripts": {
"build": "bash scripts/build",
"build:vue": "npm run build:vue-dev && npm run build:vue-service",
"build:vue-dev": "cross-env NODE_ENV=production webpack --config cfg/webpack.dev.js --progress --hide-modules",
"build:vue-service": "cross-env NODE_ENV=production webpack --config cfg/webpack.service.js --progress --hide-modules",
"clean": "rm -f *.log*; rimraf dist",
"dev": "concurrently \"scripts/server.js test aloha\" \"npm run dev:vue\"",
"dev:vue": "cross-env NODE_ENV=development webpack-dev-server --config cfg/webpack.dev.js --hot",
"start": "concurrently \"node --version\" \"scripts/server.js\" ",
"test": "npm run test:verbose",
"test:test": "mocha -w -R min --inline-diffs -g TEST",
"test:verbose": "mocha --inline-diffs",
"test:watch": "mocha -w --inline-diffs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firepick/rest-bundle.git"
},
"bin": {},
"keywords": [
"REST",
"resource bundle",
"express",
"FirePick",
"firenodejs"
],
"author": "Karl Lew",
"license": "MIT",
"bugs": {
"url": "https://github.com/firepick/rest-bundle/issues"
},
"homepage": "https://github.com/firepick/rest-bundle"
}