-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "boardgame-timer",
"version": "0.0.1",
"description": "Timer web app for boardgames",
"main": "src/app.js",
"repository": {
"type": "git",
"url": "https://github.com/patillades/boardgame-timer"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --require babel-register --require babel-plugin-module-resolver --recursive tests",
"prepublish": "./node_modules/grunt/bin/grunt prod"
},
"author": "patillades",
"license": "MIT",
"devDependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.5",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"expect": "^1.20.2",
"grunt": "^1.0.4",
"grunt-browserify": "^5.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-htmlmin": "^2.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-targethtml": "^0.2.6",
"jscs": "^3.0.6",
"loose-envify": "^1.2.0",
"mocha": "5.x",
"react-test-renderer": "^16.6.0"
},
"dependencies": {
"classnames": "2.2.x",
"lodash": ">=4.17.13",
"prop-types": "^15.6.2",
"react": "16.x",
"react-bootstrap": "0.32.x",
"react-dom": "16.x",
"react-redux": "5.x",
"react-router": "4.3.x",
"react-router-dom": "^4.3.1",
"redux": "4.x"
}
}