-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "lincoln",
"version": "1.0.0",
"description": "A neural network that determines if a tweet is form #democrat or #republican.",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node ./app/api/server.js --ignore client --open --watch --progress --colors",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZackTaylor/Lincoln.git"
},
"author": "Zack Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZackTaylor/Lincoln/issues"
},
"homepage": "https://github.com/ZackTaylor/Lincoln#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"brain.js": "^1.1.2",
"dotenv-safe": "^5.0.1",
"dotenv-webpack": "^1.5.5",
"express": "^4.16.3",
"nodemon": "^1.17.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"html-webpack-plugin": "^3.1.0",
"json-loader": "^0.5.7",
"react-hot-loader": "^4.0.0",
"style-loader": "^0.20.3",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-dev-middleware": "^3.0.1",
"webpack-dev-server": "^3.1.1",
"webpack-livereload-plugin": "^2.1.1"
}
}