forked from ainize-team2/crowdy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
52
53
54
55
{
"name": "crowdy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "jest",
"build": "tsc",
"watch-ts": "tsc -w",
"nodemon": "nodemon --watch src --delay 1 --exec 'ts-node' src/index.ts",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"yarn run watch-ts\" \"yarn run watch-nodemon\"",
"start": "tsc && node dist/index.js serve",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/*.ts src/**/*.ts src/**/**/*.ts src/**/**/**/*.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@analytics/google-analytics": "^0.2.2",
"@types/cheerio": "^0.22.17",
"@types/express": "^4.17.6",
"@types/google.analytics": "^0.0.40",
"@types/lodash": "^4.14.150",
"@types/node": "^13.11.1",
"@types/swagger-ui-express": "^4.1.2",
"@types/universal-analytics": "^0.4.4",
"@types/yamljs": "^0.2.30",
"analytics": "^0.3.1",
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"geolib": "^3.2.1",
"lodash": "^4.17.15",
"nodemon": "^2.0.3",
"socket.io": "^2.3.0",
"swagger-ui-express": "^4.1.4",
"ts-node": "^8.8.2",
"universal-analytics": "^0.4.20",
"winston": "^3.2.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
}
}