forked from bmun/huxley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "huxley",
"version": "0.0.0",
"description": "A conference management system for Berkeley Model United Nations.",
"main": "huxley/www/static/js/huxley.browserify.js",
"license": "BSD",
"dependencies": {
"classnames": "2.2.5",
"fbjs": "0.8.3",
"flux": "^2.1.1",
"history": "^1.12.0",
"js-cookie": "~2.0.3",
"react": "15.0.0",
"react-dom": "15.0.0",
"react-modal": "1.4.0",
"react-router": "1.0.0",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"test": "jest",
"build": "./node_modules/.bin/webpack --progress --watch"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"setupTestFrameworkScriptFile": "<rootDir>/scripts/jestPreprocessor.js",
"unmockedModulePathPatterns": [
"node_modules/babel-core",
"node_modules/core-js",
"<rootDir>/node_modules/flux",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/es6-promise"
],
"moduleDirectories": [
"node_modules",
"<rootDir>/huxley/www/js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"huxley/static"
]
},
"private": true,
"devDependencies": {
"babel-core": "^6.13.2",
"babel-jest": "^14.1.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.11.1",
"check-dependencies": "^1.0.1",
"core-js": "^2.4.1",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"html-loader": "^0.4.5",
"jest-cli": "~14.1.0",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"markdown-loader": "^2.0.0",
"prettier": "^1.5.3",
"style-loader": "^0.16.1",
"uglify-js": "~2.6.0",
"webpack": "^2.4.1"
},
"babel": {
"presets": [
"es2015",
"es2017",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
}