-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.47 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
84
85
86
{
"name": "grow",
"version": "1.0.0",
"description": "An app to set goals and rate progress for them",
"main": "index.js",
"directories": {
"test": "node tests/server-test.js"
},
"scripts": {
"devstart": "./node_modules/.bin/webpack-dev-server --hot",
"watch": "webpack --config ./webpack.config.js --progress --colors --watch",
"build": "webpack --config ./webpack.config.js --progress --colors",
"start": "npm run build && node server/start-server.js",
"test": "babel-tape-runner tests/reducer-test.js && node tests/helpers-server-test.js",
"lint": "eslint *"
},
"pre-commit": [
"test",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CYPIAPT-LNDSE/goals-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CYPIAPT-LNDSE/goals-app/issues"
},
"homepage": "https://github.com/CYPIAPT-LNDSE/goals-app#readme",
"dependencies": {
"async": "^2.4.0",
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"chart.js": "^2.5.0",
"css-loader": "^0.26.2",
"env2": "^2.1.1",
"file-loader": "^0.10.1",
"gsap": "^1.19.1",
"hapi": "^16.1.0",
"hapi-auth-cookie": "^7.0.0",
"inert": "^4.1.0",
"iron": "^4.0.4",
"moment": "^2.18.0",
"node-sass": "^4.5.0",
"normalize.css": "^5.0.0",
"path": "^0.12.7",
"pg": "^6.1.5",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-chartjs-2": "^2.0.5",
"react-dom": "^15.4.2",
"react-gsap-enhancer": "^0.3.0",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"request": "^2.81.0",
"sass-loader": "^6.0.3",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"socket.io-cookie": "0.0.1",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"uuid": "^3.0.1",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-tape-runner": "^2.0.1",
"babel-eslint": "^7.2.1",
"eslint": "^3.18.0",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.0.1",
"pre-commit": "^1.2.2",
"tape": "^4.6.3",
"webpack-dev-server": "^2.4.2"
}
}