-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.86 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
87
88
89
90
91
{
"name": "word-cloud",
"description": "Display a word cloud, sized according to volume and coloured by sentiment positivity.",
"version": "5.4.0",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/seinzu/word-cloud.git"
},
"homepage": "https://github.com/seinzu/word-cloud",
"keywords": [
"word cloud",
"react",
"sentiment",
"visualisation"
],
"main": "dist/server.js",
"scripts": {
"start": "forever --minUptime 1000 --spinSleepTime 1000 -c \"node --harmony\" ./dist/server.js",
"build-server": "webpack --colors --display-error-details --config configs/webpack.server.js",
"build-client": "webpack --colors --display-error-details --config configs/webpack.client.js",
"build": "concurrently \"npm run build-server\" \"npm run build-client\"",
"test": "jest",
"watch-server": "webpack --watch --verbose --colors --display-error-details --config configs/webpack.server-watch.js",
"watch-server-start": "node node_modules/just-wait --pattern \"dist/*.js\" && npm run start",
"watch-client": "webpack-dev-server --config configs/webpack.client-watch.js",
"watch": "concurrently --kill-others \"npm run watch-server-start\" \"npm run watch-server\" \"npm run watch-client\""
},
"jest": {
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils",
"jasmine-data-provider",
"nock",
"redux-mock-store",
"thunk",
"fetch",
"__tests__/assets/testTopics"
]
},
"dependencies": {
"babel-polyfill": "6.6.1",
"express": "^4.13.4",
"file-loader": "0.8.5",
"history": "^2.1.0",
"immutable": "^3.8.1",
"isomorphic-fetch": "2.2.1",
"node-sass": "3.4.2",
"pug": "^2.0.0-alpha6",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"react-router": "2.0.0",
"redux": "^3.5.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.6.5",
"babel-jest": "^11.0.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.5.0",
"concurrently": "2.0.0",
"css-loader": "^0.23.1",
"expect": "^1.18.0",
"forever": "0.15.1",
"jasmine-data-provider": "^2.2.0",
"jest-cli": "^11.0.2",
"json-loader": "0.5.4",
"just-wait": "1.0.5",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"nock": "^8.0.0",
"react-addons-test-utils": "^15.0.1",
"redux-mock-store": "^1.0.2",
"style-loader": "^0.13.1",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1",
"webpack-node-externals": "1.0.0"
},
"engines": {
"node": ">=0.10.32"
}
}