-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.38 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
{
"name": "duke-lost-found",
"version": "0.0.1",
"description": "Find your stuff on Duke's Campus, especially DukeCards",
"main": "server.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter mochawesome",
"watch": "./node_modules/.bin/mocha --watch",
"cover": "./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- test/**/*",
"lint": "./node_modules/.bin/eslint ./app --ext .js",
"docs": "./node_modules/.bin/jsdoc -p -d docs -t ./node_modules/ink-docstrap/template -R README.md -r ./app",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DbCrWk/duke-lost-found"
},
"author": "Dev Dabke <dev@dabke.com>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.0.2",
"react-hot-loader": "^3.0.0-beta.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.8.0",
"babel-eslint": "^7.1.1",
"babel-istanbul": "^0.12.1",
"babel-loader": "^6.2.3",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"css-loader": "^0.26.2",
"eslint": "^3.16.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.10.1",
"flow-bin": "^0.40.0",
"html-webpack-plugin": "^2.24.1",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"json-loader": "^0.5.4",
"mocha": "^3.0.2",
"mocha-junit-reporter": "^1.13.0",
"mochawesome": "^2.0.0",
"node-sass": "^4.1.1",
"postcss-loader": "^1.2.1",
"react-addons-test-utils": "^15.4.1",
"redux-devtools": "^3.2.0",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"sass-loader": "^4.1.1",
"stats-webpack-plugin": "^0.4.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}