-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "howlonguntil",
"version": "1.0.0",
"description": "Answer kids' \"how long until...\" questions",
"main": "app.js",
"scripts": {
"start": "webpack-dev-server --hot --inline --content-base build/",
"test": "jest",
"build": "webpack --config webpack.config.js",
"dist": "webpack --optimize-minimize -p --config webpack.production.config.js"
},
"keywords": [
"kids",
"calendar",
"web"
],
"author": "Tony Gambone",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tonygambone/howlonguntil.git"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.0",
"html-webpack-plugin": "^2.25.0",
"http-server": "^0.9.0",
"jest": "^18.1.0",
"react-addons-test-utils": "^15.4.1",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.4.1",
"redux-devtools": "^3.3.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.0-rc.3",
"webpack-dev-server": "^2.2.0-rc.0"
},
"dependencies": {
"immutable": "^3.8.1",
"moment": "^2.17.1",
"moment-duration-format": "^1.3.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0"
}
}