-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.15 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.15 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
{
"name": "leaderboard",
"version": "1.0.0",
"description": "A win/loss tracking app",
"main": "index.js",
"scripts": {
"start": "node ./src/server.js",
"prestart": "webpack --config webpack.config.production.js",
"dev-server": "webpack-dev-server",
"build": "webpack",
"build-production": "webpack --config webpack.config.production.js",
"test": "jest --coverage",
"postInstall": "webpack --config webpack.config.production.js"
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css|less)$": "<rootDir>/src/mock/styleMock.js",
"^.+\\.(gif|ttf|eot|svg|png)$": "<rootDir>/src/mock/fileMock.js"
}
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"repository": {
"type": "git",
"url": "https://github.com/nlaffey/leaderboard"
},
"author": "Nick Laffey",
"license": "ISC",
"bugs": {
"url": "https://github.com/nlaffey/leaderboard/issues"
},
"homepage": "https://github.com/nlaffey/leaderboard/",
"dependencies": {
"basic-auth-connect": "^1.0.0",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"bootstrap-sass": "^3.3.7",
"express": "^4.14.0",
"jquery": "^3.1.0",
"mongoose": "^4.6.1",
"multer": "^1.2.0",
"path": "^0.12.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.1",
"webpack-hot-middleware": "^2.12.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"body-parser": "^1.15.2",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"image-webpack-loader": "^2.0.0",
"jest": "^15.1.1",
"node-sass": "^3.10.0",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.1",
"react-autosuggest": "^6.0.4",
"react-dom": "^15.3.1",
"react-router": "^2.8.1",
"react-test-renderer": "^15.3.2",
"reactable": "^0.14.0",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1"
}
}