-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "c4me",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"test": "mocha",
"test-one": "mocha $1",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyzhng/c4me.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lyzhng/c4me/issues"
},
"homepage": "https://github.com/lyzhng/c4me#readme",
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"jsdom": "^16.2.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.1.1",
"mongodb": "^3.5.5",
"mongoose": "^5.9.3",
"papaparse": "^5.1.1",
"puppeteer": "^2.1.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.19.0"
}
}