-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.26 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.26 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
{
"name": "tweetgui",
"version": "1.0.0",
"description": "A web gui to display our results",
"main": "index.js",
"scripts": {
"transpile": "NODE_ENV=production node_modules/.bin/webpack -p",
"transpile-client": "babel ./src/client_components/search.js -o ./src/client_components/search.compiled.js",
"server": "NODE_ENV=production node_modules/.bin/babel-node --presets 'react,es2015' server.js",
"start": "npm run transpile && npm run transpile-client && npm run server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hashtag-Analyzer/Tweet-GUI.git"
},
"author": "John Dixon",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hashtag-Analyzer/Tweet-GUI/issues"
},
"homepage": "https://github.com/Hashtag-Analyzer/Tweet-GUI#readme",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"body-parser": "^1.15.2",
"ejs": "^2.5.2",
"express": "^4.14.0",
"jQuery": "^1.7.4",
"materialize-css": "^0.97.8",
"morgan": "^1.7.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-router": "^3.0.0"
},
"devDependencies": {
"babel-loader": "^6.2.8",
"webpack": "^1.13.3"
}
}