-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.27 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.27 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
{
"name": "circuits-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production node lib/scripts/make.js && NODE_ENV=production webpack -p --config lib/config/webpack-config.js",
"webpack": "NODE_ENV=development node lib/scripts/make.js && NODE_ENV=development node lib/webpack-dev-server.js",
"dev": "NODE_ENV=development node lib/scripts/make.js && NODE_ENV=development ./node_modules/nodemon/bin/nodemon.js index.js",
"make": "NODE_ENV=development node lib/scripts/make.js",
"lint": "eslint . --ext .js --ext .jsx",
"postinstall": "npm run build",
"test": "npm run db:clean && ./node_modules/mocha/bin/mocha --recursive",
"test:watch": "./node_modules/mocha/bin/mocha --recursive --watch",
"start": "node index.js",
"start:prod": "NODE_ENV=production heroku local",
"clean": "rm ./heapdump*",
"db:clean": "psql -d circuits-development -f db/drop_all.sql",
"db:migrate": "node_modules/.bin/db-migrate",
"db:migrate:up": "node_modules/.bin/db-migrate up --config db/database.json --migrations-dir=db/.migrations",
"db:migrate:up:prod": "node_modules/.bin/db-migrate up --config db/database.json --migrations-dir=db/.migrations -e prod",
"db:migrate:down": "node_modules/.bin/db-migrate down --config db/database.json --migrations-dir=./db/.migrations",
"db:migrate:reset": "node_modules/.bin/db-migrate reset --config db/database.json --migrations-dir=./db/.migrations"
},
"engines": {
"node": "6.2.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.12.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-core": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.3.13",
"bcrypt": "^0.8.6",
"bluebird": "^3.3.5",
"boom": "^3.1.2",
"db-migrate": "^0.9.23",
"good": "^7.0.0",
"good-console": "^6.1.1",
"good-squeeze": "^3.0.1",
"h2o2": "^4.0.2",
"halacious": "^3.5.4",
"hapi": "^13.3.0",
"hapi-alive": "^1.2.0",
"hapi-swagger": "^5.1.0",
"hoek": "^4.0.0",
"inert": "^3.2.0",
"joi": "^8.0.5",
"lodash": "^4.11.2",
"logfilename": "^0.1.3",
"moment": "^2.13.0",
"pg": "^4.5.5",
"pg-monitor": "^0.5.3",
"pg-promise": "^4.0.4",
"poop": "^2.0.0",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.3",
"rimraf": "^2.4.4",
"urijs": "^1.18.0",
"vision": "^4.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"nodemon": "^1.8.1",
"superagent": "^1.8.3",
"assets-webpack-plugin": "^3.2.0",
"chalk": "^1.1.1",
"css-loader": "^0.23.0",
"hapi-react-views": "^5.0.1",
"ignore-styles": "^1.2.0",
"jsdom": "^8.1.0",
"style-loader": "^0.13.0",
"vision": "^4.0.1",
"webpack": "^1.11.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.3.0",
"eslint": "^1.1.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.2.2",
"express": "^4.13.3",
"react-transform-hmr": "^1.0.1"
}
}