-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.45 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.45 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
{
"name": "annotator-content-analysis",
"version": "1.0.0",
"description": "A content analysis plugin for annotator",
"repository": {
"type": "git",
"url": "git@github.com:Goodly/annotator-content-analysis.git"
},
"scripts": {
"dev": "node --harmony ./webpack/dev-server.js",
"deploy": "./node_modules/.bin/webpack --progress --stats --config ./webpack/prod.config.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive",
"test:watch": "npm run test -- --watch"
},
"author": "",
"license": "MIT",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.3.13",
"babel-require": "^1.0.1",
"babel-runtime": "^6.3.19",
"chai": "^3.5.0",
"chai-immutable": "^1.5.3",
"colors": "^1.1.2",
"css-loader": "^0.23.1",
"csswring": "^4.2.1",
"debug": "^2.1.3",
"del": "^2.2.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.0.1",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.1",
"html-webpack-plugin": "^2.7.2",
"imports-loader": "^0.6.3",
"jscs": "^2.9.0",
"jscs-loader": "0.2.0",
"json-loader": "^0.5.1",
"mocha": "^2.4.5",
"node-sass": "^3.0.0-beta.7",
"object-assign": "^4.0.1",
"postcss-loader": "^0.8.0",
"raw-loader": "^0.5.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.2.5",
"react-redux": "^4.2.1",
"react-router": "^2.0.0-rc5",
"react-tools": "^0.13.1",
"redux": "^3.2.1",
"redux-devtools": "^3.1.0",
"sass-loader": "^3.1.2",
"script-loader": "^0.6.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.5",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"dependencies": {
"classnames": "^2.2.3",
"dom-anchor-text-position": "^2.0.1",
"immutable": "^3.7.6",
"jquery": "^2.2.0",
"react-addons-css-transition-group": "^0.14.7"
}
}