-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "spacy-annotator",
"version": "1.0.0",
"description": "A web application for annotating text corpora with NLP annotations",
"scripts": {
"start": "brunch watch --server",
"prod": "brunch build --production",
"test": "jest --coverage --verbose"
},
"author": "Tom Crossland",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.22.0",
"bootstrap": "^3.3.7",
"es6-promise": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.1",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-saga": "^0.14.8",
"slate": "^0.19.22"
},
"devDependencies": {
"babel-brunch": "^6.0.6",
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"brunch": "^2.10.5",
"clean-css-brunch": "^2.0.0",
"css-brunch": "^2.6.1",
"jasmine-reporters": "^2.2.0",
"javascript-brunch": "^2.0.0",
"jest": "^18.1.0",
"redux-saga-test-plan": "^2.2.0",
"uglify-js-brunch": "^2.1.1"
},
"jest": {
"automock": false,
"setupTestFrameworkScriptFile": "<rootDir>/jest/setup-jasmine-env.js",
"collectCoverageFrom": [
"app/**/*.js",
"app/**/*.jsx"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}