-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
49 lines (49 loc) · 1.39 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": "react-todo",
"version": "1.4.1",
"description": "Another basic todo app in React and Flux",
"main": "server.js",
"dependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"dateformat": "^1.0.12",
"flux": "^2.1.1",
"hapi": "^11.1.3",
"hapi-react-views": "^5.0.1",
"inert": "^3.2.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"superagent": "^1.6.1",
"vision": "^4.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"build": "webpack -p --progress --colors",
"dev": "webpack --progress --colors --watch & nodemon",
"lint": "eslint --ignore-pattern **/bundle*.js --ext .js,.jsx assets/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tribou/react-todo.git"
},
"author": "tribou",
"license": "MIT",
"bugs": {
"url": "https://github.com/tribou/react-todo/issues"
},
"homepage": "https://github.com/tribou/react-todo#readme",
"devDependencies": {
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"browser-sync": "^2.10.1",
"browser-sync-webpack-plugin": "^1.0.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.13.0",
"webpack": "^1.12.9"
}
}