forked from uchews/habitlogger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.75 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
54
55
56
57
58
59
60
61
{
"name": "stoneandsand",
"version": "1.0.0",
"description": "Daily event/habit tracker & visualizer.",
"engine": "node 6.11.5",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint --fix .",
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"seed": "node db/seed.js",
"start": "webpack -d | node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/stoneandsand/stoneandsand.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stoneandsand/stoneandsand/issues"
},
"homepage": "https://github.com/stoneandsand/stoneandsand#readme",
"dependencies": {
"axios": "^0.17.1",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chart.js": "^2.7.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"material-ui": "^0.19.4",
"mongoose": "^4.13.3",
"path": "^0.12.7",
"react": "^16.1.1",
"react-chartjs-2": "^2.6.4",
"react-dom": "^16.1.1",
"react-share": "^1.17.0",
"webpack": "^3.8.1"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"json-loader": "^0.5.7",
"transform-loader": "^0.2.4"
}
}