-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
95 lines (95 loc) · 2.99 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "echo-ml",
"version": "0.1.0",
"private": true,
"dependencies": {
"@koa/cors": "^2.2.1",
"@types/passport-local": "^1.0.33",
"axios": "^0.18.0",
"azure-storage": "^2.8.1",
"babel-eslint": "^8.2.3",
"bcrypt": "^3.0.0",
"bcrypt-nodejs": "0.0.3",
"config": "^2.0.1",
"fs-extra": "^7.0.0",
"gm": "^1.23.0",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-morgan": "^1.0.1",
"koa-passport": "^4.0.1",
"koa-route": "^3.2.0",
"koa-send": "^5.0.0",
"koa-session": "^5.5.1",
"koa-static": "^5.0.0",
"material-ui": "1.0.0-beta.31",
"material-ui-icons": "^1.0.0-beta.36",
"mkdirp": "^0.5.1",
"moment": "^2.22.1",
"mongoose": "^5.0.15",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.1.4",
"request": "^2.85.0",
"wavesurfer.js": "^2.0.5",
"winston": "^3.0.0",
"winston-daily-rotate-file": "^3.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && tsc || true",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server": "nodemon --watch 'server/**/*.{ts,tsx}' --exec 'ts-node' server/index.ts",
"dev": "concurrently \"npm run server\" \"npm run start\"",
"prod": "NODE_ENV=production node build/server",
"prettier": "prettier --write '{src,server}/**/*.{js,jsx,ts,tsx,css}'",
"lint": "eslint 'src/**/*.{js,jsx}' || tslint 'server/**/*.{ts,tsx}'",
"lint-fix": "eslint --fix 'src/**/*.{js,jsx}' || tslint --fix 'server/**/*.{ts,tsx}'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": ["tslint --fix", "prettier --write", "git add"],
"*.{js,jsx,json,css,scss,md}": ["prettier --write", "git add"]
},
"devDependencies": {
"@types/bcrypt": "^2.0.0",
"@types/bcrypt-nodejs": "0.0.30",
"@types/config": "0.0.34",
"@types/fs-extra": "^5.0.2",
"@types/gm": "^1.17.33",
"@types/kcors": "^2.2.3",
"@types/koa": "^2.0.45",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-morgan": "^1.0.4",
"@types/koa-passport": "^4.0.1",
"@types/koa-route": "^3.2.3",
"@types/koa-send": "^4.1.1",
"@types/koa-session": "^5.7.3",
"@types/koa-static": "^4.0.0",
"@types/mkdirp": "^0.5.1",
"@types/mongoose": "^5.0.10",
"@types/react": "^16.3.11",
"@types/react-dom": "^16.0.5",
"@types/request": "^2.47.0",
"concurrently": "^3.5.1",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"nodemon": "^1.17.3",
"ts-node": "^7.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"typescript": "^3.0.1"
},
"proxy": "http://localhost:4000"
}