-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.94 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
{
"name": "lifestack-client",
"version": "0.1.0",
"description": "No skill too stupid.",
"main": "index.js",
"scripts": {
"build": "webpack --watch",
"devserver": "webpack-dev-server --hot --inline",
"server": "nodemon ./src/server/index.js",
"start": "node ./src/server/index.js",
"postinstall": "webpack",
"test": "tape './tests/**/*.test.js' -r babel-register | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikau-2016/lifestack-client.git"
},
"keywords": [
"skills",
"Adulting"
],
"author": "Nikau 2016",
"license": "MIT Licence",
"bugs": {
"url": "https://github.com/nikau-2016/lifestack-client/issues"
},
"homepage": "https://github.com/nikau-2016/lifestack-client#readme",
"devDependencies": {
"babel-register": "^6.14.0",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"jsdom": "^9.5.0",
"nock": "^8.0.0",
"nodemon": "^1.10.2",
"react-addons-test-utils": "^15.3.1",
"redux-mock-store": "^1.1.4",
"sinon": "^1.17.5",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"webpack-dev-server": "^1.15.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"engines": {
"node": "6.4"
},
"dependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"cors": "^2.8.1",
"express": "^4.14.0",
"react": "^15.3.1",
"react-disqus-thread": "^0.4.0",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"react-social-buttons": "^1.0.8",
"react-twitter-widgets": "^0.2.4",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"superagent": "^2.2.0",
"webpack": "^1.13.2"
}
}