-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
115 lines (115 loc) · 3.61 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
{
"name": "annotator-content-analysis",
"version": "1.0.0",
"description": "A content analysis plugin for annotator",
"repository": {
"type": "git",
"url": "git@github.com:Goodly/TextThresher.git"
},
"scripts": {
"lint": "eslint",
"dev": "webpack-dev-server --config webpack/dev.config.js",
"serve": "webpack-dev-server --config webpack/dev.config.js",
"build": "NODE_ENV=development CLEANDIST=true webpack --config webpack.config.js --progress",
"build:quiet": "NODE_ENV=development CLEANDIST=true webpack --config webpack.config.js --bail",
"deploy": "NODE_ENV=production CLEANDIST=true webpack --config webpack.config.js --progress",
"deploy:quiet": "NODE_ENV=production CLEANDIST=true webpack --config webpack.config.js --bail",
"test": "node node_modules/.bin/jest",
"test:watch": "npm run test -- --watch"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.4.5",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"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-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.16.3",
"babel-require": "^1.0.1",
"babel-runtime": "^6.23.0",
"caniuse-db": "^1.0.30000680",
"clean-webpack-plugin": "^0.1.17",
"color": "^2.0.0",
"colors": "^1.1.2",
"css-loader": "^0.28.3",
"csswring": "^5.1.0",
"debug": "^2.1.3",
"enzyme": "^2.4.1",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.6.1",
"eslint-module-utils": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"estraverse-fb": "^1.3.1",
"exports-loader": "^0.6.2",
"fetch-ponyfill": "^4.0.0",
"file-loader": "^1.1.4",
"html-webpack-plugin": "^2.22.0",
"identity-obj-proxy": "^3.0.0",
"immutable": "^3.8.1",
"intro.js": "^2.5.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"json-loader": "^0.5.1",
"moment": "^2.15.2",
"node-sass": "^4.4.0",
"normalizr": "^3.2.3",
"on-build-webpack": "^0.1.0",
"postcss-loader": "^2.0.5",
"radium": "^0.19.1",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-addons-shallow-compare": "^15.4.0",
"react-addons-test-utils": "^15.4.2",
"react-dates": "^12.1.2",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-portal": "^3.0.0",
"react-redux": "^4.2.1",
"react-test-renderer": "^15.4.2",
"redux": "^3.2.1",
"redux-devtools": "^3.1.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^6.0.5",
"script-loader": "^0.7.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.5",
"webpack": "3.6.0",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"markdown": "^0.5.0",
"prop-types": "^15.6.0"
},
"jest": {
"verbose": true,
"modulePaths": [
"<rootDir>/app"
],
"moduleFileExtensions": [
"",
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"web_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
}
}
}