-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.57 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ugly-mugs-just-num",
"version": "1.0.0",
"description": "Prototype webapp task manager for Ugly Mugs",
"main": "index.js",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"precommit": "npm run lint && npm run flow && npm test && npm run coverage",
"ava": "ava --verbose --require babel-register",
"coverage": "nyc check-coverage --lines 100, --functions 100, --branches 100",
"test": "nyc npm run ava",
"clean": "rimraf './public/*.+(js|css|html|map)'",
"build": "webpack --config ./webpack.production.config.js --progress",
"dev": "node webpack_server",
"dpd": "dpd",
"go": "npm-run-all --parallel dev dpd",
"lint": "eslint './+(app|test|stories)/**/*.js'",
"start": "node index.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uglymugs/JustNUM.git"
},
"author": "Matt Glover (https://github.com/matthewglover)",
"license": "MIT",
"bugs": {
"url": "https://github.com/uglymugs/JustNUM/issues"
},
"homepage": "https://github.com/uglymugs/JustNUM#readme",
"devDependencies": {
"@kadira/storybook": "^2.9.1",
"ava": "^0.16.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.16.0",
"coveralls": "^2.11.12",
"css-loader": "^0.24.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"extract-text-webpack-plugin": "^1.0.1",
"flow-bin": "^0.32.0",
"html-webpack-plugin": "^2.22.0",
"husky": "^0.11.6",
"json-loader": "^0.5.4",
"node-sass": "^3.8.0",
"nyc": "^8.1.0",
"redux-devtools": "^3.0.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.2",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
},
"dependencies": {
"deployd": "^0.8.9",
"faker": "^3.1.0",
"history": "^2.1.2",
"lodash.escaperegexp": "^4.1.2",
"material-ui": "^0.15.4",
"moment": "^2.15.1",
"ramda": "^0.22.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-hot-loader": "^3.0.0-beta.1",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-form": "^6.0.5",
"redux-thunk": "^2.1.0",
"uuid": "^2.0.2"
},
"engines": {
"node": "6.2.2"
}
}