-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
42
43
44
45
46
47
48
{
"name": "dplanner-scraper",
"version": "1.1.0",
"description": "Tools to scrape and analyze Dartmouth data.",
"author": "Jai Smith <jaismith>",
"main": "src/server.js",
"scripts": {
"test": "eslint src/**.js",
"dev": "nodemon src/server.js --exec babel-node",
"start": "babel-node src/server.js",
"build": "babel src -d dist",
"prod": "yarn build; node dist/server.js"
},
"license": "ISC",
"engines": {
"node": ">=9 <=16",
"npm": "^5.6.0",
"yarn": "^1.6.0"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.2",
"express": "^4.17.1",
"isomorphic-git": "^1.4.0",
"json-stable-stringify": "^1.0.1",
"morgan": "^1.10.0",
"querystring": "^0.2.0",
"rimraf": "^3.0.2",
"xxhash": "^0.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"nodemon": "^2.0.3"
}
}