-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nth-days-old",
"version": "0.1.0",
"description": "Calculate your nth days old",
"author": "Javier Valencia Romero",
"repository": {
"type": "git",
"url": "[email protected]:jvalen/nth-days-old.git"
},
"scripts": {
"lint": "eslint .",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch",
"start": "cross-env NODE_ENV=development node server.dev.js",
"build": "npm run test && cross-env NODE_ENV=production webpack --config webpack.prod.config.js --progress --colors -p",
"serve": "cross-env NODE_ENV=production node server.prod.js"
},
"license": "MIT",
"dependencies": {
"boron": "^0.2.3",
"history": "^2.0.0",
"moment": "^2.12.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel": "^6.0.0",
"babel-core": "^6.0.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-react-constant-elements": "6.3.13",
"babel-plugin-transform-react-inline-elements": "6.3.13",
"babel-plugin-transform-react-remove-prop-types": "0.2.3",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-react-hmre": "1.0.1",
"babel-preset-stage-2": "^6.0.0",
"cross-env": "1.0.6",
"css-loader": "^0.23.0",
"cssnano": "^3.0.1",
"eslint": "^2.3.0",
"eslint-config-airbnb": "6.1.0",
"eslint-plugin-react": "^4.2.1",
"expect": "^1.10.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.6.1",
"json-loader": "^0.5.4",
"mocha": "^2.3.2",
"object.assign": "^4.0.1",
"postcss-focus": "^1.0.0",
"postcss-import": "^7.0.0",
"postcss-loader": "^0.8.0",
"postcss-mixins": "^4.0.1",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^1.2.1",
"postcss-simple-vars": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.11.0"
}
}