forked from hull-ships/hull-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.35 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.35 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "hull-processor",
"description": "Run code to update User Properties and generate Events",
"version": "0.1.0",
"homepage": "https://github.com/hull-ships/hull-processor",
"license": "MIT",
"author": {
"name": "Hull",
"email": "[email protected]",
"url": "https://github.com/hull"
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"repository": {
"type": "git",
"url": "git://github.com/hull-ships/hull-processor"
},
"bugs": {
"url": "https://github.com/hull-ships/hull-processor/issues"
},
"scripts": {
"build": "npm run clean && npm run build:server && npm run build:client",
"build:client": "NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack.config.js --progress --profile --colors",
"build:server": "./node_modules/.bin/babel server -d lib",
"start": "node ./lib",
"start:dev": "NODE_ENV=development LOG_LEVEL=debug ./node_modules/.bin/nodemon -V -w server -x ./node_modules/.bin/babel-node -- server",
"test": "npm run test:lint && npm run test:units && npm run test:specs",
"test:lint": "./node_modules/.bin/eslint server",
"test:modules": "npm outdated --depth=0",
"test:units": "NODE_ENV=test ./node_modules/.bin/mocha -R spec ./tests/index",
"test:specs": "NODE_ENV=test ./node_modules/.bin/mocha -R spec ./specs/index",
"clean": "./node_modules/.bin/rimraf dist; ./node_modules/.bin/rimraf lib",
"update": "./node_modules/.bin/updtr",
"watch": "./node_modules/.bin/watch 'clear && npm run test:lint -s && npm run test:units -s && npm run build:client -s' server src",
"postinstall": "npm run build"
},
"keywords": [
"hull",
"ship",
"hull-ship"
],
"dependencies": {
"babel-cli": "^6.10.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"codemirror": "^5.16.0",
"connect": "^3.4.1",
"connect-timeout": "^1.7.0",
"css-loader": "^0.23.1",
"deep-diff": "^0.3.4",
"deep-freeze": "0.0.1",
"deepmerge": "^1.3.2",
"event-stream": "^3.3.3",
"express": "^4.14.0",
"hull": "0.11.7",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"newrelic": "^1.28.3",
"raven": "^0.11.0",
"react": "^15.1.0",
"react-bootstrap": "^0.29.5",
"react-dom": "^15.1.0",
"request": "^2.74.0",
"response-time": "^2.3.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"superagent": "^2.0.0",
"svg-inline-loader": "^0.6.0",
"svg-inline-react": "^1.0.1",
"urijs": "^1.18.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"winston-logstash": "^0.2.11"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"jwt-decode": "^2.2.0",
"minihull": "0.0.7",
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
"react-hot-loader": "^1.3.0",
"sinon": "^1.17.4",
"supertest": "^1.2.0",
"updtr": "^0.1.15",
"watch": "^0.19.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1"
}
}