-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "aos-workbench",
"version": "1.0.0",
"description": "Age of Sigmar Workbench",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"test": "jest --watch"
},
"keywords": [
"aos",
"warhammer"
],
"author": "Chris Rollock <sastopher@gmail.com>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"css-loader": "^0.26.0",
"dsv-loader": "^1.1.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"jest": "^17.0.3",
"json-loader": "^0.5.4",
"react-dom": "^15.3.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"dependencies": {
"immutable": "^3.8.1",
"lodash": "^4.16.2",
"react": "^15.3.2",
"react-addons-shallow-compare": "^15.4.0",
"react-dom": "^15.3.2",
"react-virtualized": "^8.5.2"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/style-mock.js",
"\\.(csv)$": "<rootDir>/__mocks__/csv-mock.js"
},
"rootDir": "client",
"setupFiles": [
"<rootDir>/test-setup.js"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules"
]
}
}