-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
118 lines (118 loc) · 3.92 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
{
"name": "fielddb-webserver",
"version": "5.168.15",
"description": "Web site for FieldDB corpora pages.",
"homepage": "https://github.com/FieldDB/FieldDB/issues/milestones?state=closed",
"repository": {
"type": "git",
"url": "git://github.com/FieldDB/FieldDBWebServer.git"
},
"bugs": {
"url": "https://github.com/FieldDB/FieldDB/issues"
},
"keywords": [
"fielddb",
"website"
],
"author": "FieldDB contributors <info@fielddb.org>",
"contributors": [
"cesine <cesine@yahoo.com>",
"Tobin Skinner <tobin.skinner@gmail.com>",
"Josh <josh.horner@gmail.com>",
"hisakonog <hisakonog@gmail.com>",
"Fieldlinguist <info@fieldlinguist.com>"
],
"dependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^10.1.0",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-register": "^6.5.1",
"bluebird": "2.10.0",
"body-parser": "^1.13.3",
"config": "^1.25.1",
"consolidate": "^0.13.1",
"debug": "^2.6.3",
"express": "^4.13.3",
"fielddb": "5.168.13-rc0",
"forever": "^0.15.1",
"handlebars": "^4.0.2",
"history": "^1.17.0",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.1.1",
"marked": "^0.3.6",
"method-override": "^2.3.5",
"morgan": "^1.6.1",
"prop-types": "^15.7.2",
"q": "^1.2.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-helmet": "^5.0.3",
"react-redux": "^2.1.2",
"react-router": "^2.8.1",
"redux": "^3.0.0",
"redux-logger": "^1.0.9",
"redux-thunk": "^0.1.0",
"serve-favicon": "^2.3.0",
"superagent": "^3.5.2"
},
"main": "service.js",
"bin": {
"fielddb-web": "./bin/fielddb-web-server"
},
"scripts": {
"build": "npm run webpack && gulp build",
"build:production": "rimraf dist/ && NODE_ENV=production API_BASE_URL=http://localhost:8000 npm run webpack && API_BASE_URL=http://localhost:8000 NODE_ENV=production gulp build",
"clean": "rimraf dist/",
"lint": "jshint lib/*.js routes/*.js test/**/*.js",
"lint:es6": "eslint --fix --ext .jsx --ext .js app bin",
"start": "./bin/fielddb-web-server",
"start:watch": "NODE_PATH=./app concurrently --kill-others \"nodemon ./bin/fielddb-web-server\" \"node webpack.server.js\" \"gulp css:watch\"",
"start:production": "NODE_ENV=production ./bin/fielddb-web-server",
"test": "NODE_ENV=test mocha test/**/*-spec.js",
"test:ci": "NODE_ENV=test NODE_PATH=./app mocha --compilers js:babel-register -r app/spec/support/setup.mocha.js --recursive 'app/**/*.test.js'",
"test:site": "node test/integration/links.js",
"test:watch": "NODE_ENV=test NODE_PATH=./app mocha --compilers js:babel-register -r app/spec/support/setup.mocha.js --recursive 'app/**/*.test.js' -w",
"watch": "nodemon ./bin/fielddb-web-server",
"webpack": "webpack"
},
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"compression": "^1.6.0",
"concurrently": "^2.0.0",
"crawl": "git://github.com/cesine/crawl.git",
"enzyme": "^2.3.0",
"eslint": "^4.18.2",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.20.3",
"fixturefiles": "^0.3.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-load-plugins": "^2.0.3",
"gulp-rev": "^9.0.0",
"gulp-rev-all": "^2.0.3",
"gulp-rev-replace": "^0.4.4",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"jsdom": "^7.0.1",
"jshint": "^2.9.4",
"mocha": "^2.4.5",
"nock": "^2.17.0",
"nodemon": "^1.6.0",
"rimraf": "^2.5.2",
"run-sequence": "^1.2.2",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"supertest": "^3.0.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
}
}