This repository has been archived by the owner on Apr 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "mit-smart-confessions-website",
"version": "0.0.0",
"engines": {
"node": "11.2.0",
"yarn": "1.12.3"
},
"description": "MIT Confession Rater is an application that uses machine learning to extract or produce interesting data from MIT confessions",
"private": true,
"author": "Robert M. Vunabandi <[email protected]> (https://robertvunabandi.com/)",
"license": "MIT",
"scripts": {
"delete-dist": "rm -rf ./public/dist",
"build": "yarn install && yarn build-app",
"build-app": "yarn delete-dist && npx webpack",
"start": "yarn install && yarn run-server",
"build-run": "yarn build-app && yarn run-server",
"run-server": "node ./bin/www",
"start-debug": "yarn build && yarn run-server-debug",
"run-server-debug": "DEBUG=mcr:server node ./bin/www"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"morgan": "~1.9.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"file-loader": "^2.0.0",
"node-sass": "^4.9.3",
"path": "^0.12.7",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}