forked from metabrainz/bookbrainz-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.21 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "bbsite",
"version": "0.0.0",
"private": true,
"scripts": {
"copy-client-scripts": "./scripts/copy-client-scripts.sh",
"mkdirs": "mkdir -p static/js/editor static/js/entity static/stylesheets",
"clean": "./scripts/clean.sh",
"prepublishOnly": "npm run clean && npm run mkdirs && npm run copy-client-scripts",
"postinstall": "npm run prepublishOnly",
"build-server-js": "babel src --out-dir lib",
"build-client-js": "./scripts/build-client-js.sh",
"build-less": "./scripts/build-less.sh",
"prestart": "npm run build-less & npm run build-client-js & npm run build-server-js",
"start": "node ./lib/server/app.js",
"watch-server-js": "cross-env DEBUG=bbsite nodemon src/server/app.js --watch src --exec babel-node",
"watch-client-js": "./scripts/watch-client-js.sh",
"watch-less": "./scripts/watch-less.sh",
"debug": "npm run watch-less & npm run watch-client-js & npm run watch-server-js",
"lint": "npm run prestart && eslint src test templates",
"lint-errors": "npm run prestart && eslint --quiet src test templates",
"test": "npm run lint-errors && cross-env NODE_ENV=test mocha",
"test-cov": "nyc --reporter=text npm run test",
"test-ci": "nyc --reporter=lcovonly --reporter=text-summary npm run test",
"jsdoc": "node_modules/.bin/jsdoc -r src",
"browser-test": "nightwatch --config config/nightwatch.local.json -e chrome,firefox,internet_explorer_10,android_s4_emulator,iphone_6_simulator",
"flow": "flow"
},
"engines": {
"node": ">=6.0"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2016": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.11.1",
"babel-runtime": "^6.23.0",
"babelify": "^7.3.0",
"bluebird": "^3.3.4",
"body-parser": "^1.14.1",
"bookbrainz-data": "^1.0.0",
"bootstrap": "^3.3.2",
"browserify": "^14.0.0",
"catw": "^1.0.1",
"classnames": "^2.2.5",
"co": "^4.6.0",
"connect-redis": "^3.0.1",
"cross-env": "^5.0.1",
"debug": "^2.2.0",
"elasticsearch": "^12.1.3",
"express": "^4.13.3",
"express-session": "^1.10.1",
"express-static-cache": "0.0.6",
"factor-bundle": "^2.3.3",
"font-awesome": "^4.6.3",
"git-rev": "^0.2.1",
"handlebars": "^4.0.5",
"http-status": "^1.0.0",
"immutable": "^3.8.1",
"influx": "^5.0.7",
"jade": "~1.11.0",
"jquery": "^3.1.1",
"jquery.mousewheel": "^3.1.9",
"less": "^2.7.1",
"lodash": "^4.7.0",
"log": "^1.4.0",
"moment": "^2.17.1",
"morgan": "^1.8.2",
"passport": "^0.3.2",
"passport-musicbrainz-oauth2": "git+https://github.com/LordSputnik/passport-musicbrainz-oauth2.git",
"react": "^15.6.1",
"react-addons-shallow-compare": "^15.6.0",
"react-bootstrap": "^0.31.3",
"react-dom": "^15.6.1",
"react-fontawesome": "^1.5.0",
"react-redux": "^5.0.2",
"react-select": "^1.0.0-beta14",
"react-sticky": "^6.0.1",
"react-virtualized": "^9.8.0",
"react-virtualized-select": "^3.0.1",
"redux": "^3.7.1",
"redux-debounce": "^1.0.1",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.2.0",
"serve-favicon": "^2.4.3",
"superagent": "^3.4.1",
"superagent-bluebird-promise": "^4.1.0",
"validator": "^9.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"eslint": "^4.1.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.54.0",
"jsdoc": "^3.4.0",
"mocha": "^3.2.0",
"nightwatch": "^0.9.16",
"nodemon": "^1.9.2",
"nyc": "^11.0.2",
"rewire": "v2.5.2",
"saucelabs": "^1.2.0",
"supertest": "^3.0.0",
"watchify": "^3.7.0"
}
}