-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.56 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
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": "abe-web",
"version": "1.0.0",
"description": "Web frontend utilizing React for Olin College of Engineering's Amorphous Blob of Events (ABE).",
"main": "server.js",
"scripts": {
"build": "webpack --config=webpack.config.js -p",
"clean": "rimraf bundle.js bundle.js.map",
"dev": "webpack-dev-server --inline --hot",
"format": "eslint --fix --ext .js,.jsx src *.js && $npm_execpath run lint:markdown --fix",
"heroku-postbuild": "$npm_execpath run clean && $npm_execpath run build",
"lint:js": "eslint --cache --ext .js,.jsx src *.js",
"lint:markdown": "markdownlint *.md && markdownlint .github/PULL_REQUEST_TEMPLATE.md -c .github/.markdownlintrc",
"lint": "$npm_execpath run lint:js && $npm_execpath run lint:markdown",
"start": "node server.js",
"stats": "webpack --json > stats.json",
"test": "jest"
},
"engines": {
"node": "^10"
},
"repository": "github:olin-build/abe-web",
"keywords": [
"abe",
"events",
"calendar",
"frontend",
"react",
"olin college",
"library"
],
"author": "Olin College of Engineering Library",
"license": "MIT",
"bugs": {
"url": "https://github.com/olin-build/abe-web/issues"
},
"homepage": "https://github.com/olin-build/abe-web#readme",
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"blacklist": "^1.1.4",
"body-parser": "^1.17.2",
"commonmark": "^0.27.0",
"commonmark-react-renderer": "^4.3.3",
"copy-to-clipboard": "^3.0.6",
"css-loader": "^0.28.4",
"deepcopy": "^0.6.3",
"dotenv": "^5.0.0",
"expose": "^0.1.4",
"expose-loader": "^0.7.3",
"express": "^4.15.3",
"helmet": "^3.12.1",
"http-server": "0.10.0",
"input-moment": "git+https://github.com/kylecombes/input-moment.git",
"lodash": "^4.17.10",
"moment": "^2.18.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dnd": "^2.4.0",
"react-dom": "^17.0.1",
"react-ga": "^2.2.0",
"react-markdown": "^2.5.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"serve-static": "^1.13.2",
"svg-react-loader": "^0.4.4",
"ultra-responsive-calendar": "https://github.com/kylecombes/ultra-responsive-calendar.git",
"webpack": "^2.6.1",
"webpack-dev-middleware": "^2.0.4"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "^7.4.0",
"markdownlint-cli": "^0.8.1",
"moment-timezone": "^0.5.16",
"react-codemirror": "^1.0.0",
"react-tag-input": "git+https://github.com/kylecombes/react-tags.git",
"react-test-renderer": "^15.0.0",
"redux-devtools": "^3.4.0",
"regenerator-runtime": "^0.11.1",
"source-map-loader": "^0.2.3",
"webpack-dev-server": "^2.5.0"
},
"resolutions": {
"react-input-slider": "6.0.0"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"__test__"
],
"moduleNameMapper": {
"\\.(svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/src/__test__/setup.js",
"testPathIgnorePatterns": [
"setup.js"
]
}
}