-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3.25 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "merriman",
"version": "1.2.2-alpha.4",
"author": {
"name": "Johnny Reina",
"email": "johnny.r.reina@gmail.com",
"url": "http://github.com/jreina"
},
"repository": {
"url": "https://github.com/merriman-labs/merriman"
},
"dependencies": {
"@johnny.reina/ajv-types": "^0.2.0",
"@johnny.reina/convert-srt": "^0.2.1",
"ajv": "^6.12.6",
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.5.2",
"bootswatch": "^4.5.1",
"commander": "^6.1.0",
"connect-busboy": "^1.0.0",
"connect-mongodb-session": "^3.1.1",
"cors": "^2.8.5",
"express": "^4.6",
"express-session": "^1.17.1",
"figlet": "^1.2.1",
"forever": "^4.0.3",
"inversify": "^5.0.1",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"mongodb": "^3.6.0",
"morgan": "^1.9.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"ramda": "^0.27.0",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^16.14.0",
"react-icons": "^3.2.2",
"react-image-fallback": "^8.0.0",
"react-responsive-carousel": "^3.2.11",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"react-spinners": "^0.9.0",
"react-toastify": "^6.2.0",
"reactstrap": "^6.0.1",
"reflect-metadata": "^0.1.13",
"uuid": "^3.2.1"
},
"scripts": {
"cli": "ts-node -P ./server/tsconfig.json server/cli/cli.ts run C:\\Users\\Johnny\\.merriman\\server-config.Movies.json -a",
"server": "tsnd -P ./server/tsconfig.json server/server.ts server-config.dev.json -a",
"start": "react-scripts start",
"build": "react-scripts build",
"build:server": "tsc -P ./server/tsconfig.json",
"prebuild:server": "rimraf dist_server/",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.{ts,tsx}\""
},
"lint-staged": {
"*.js|*.ts|*.tsx": [
"prettier --write",
"git add"
]
},
"proxy": "http://localhost:4000",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/busboy": "^1.5.0",
"@types/chance": "^1.0.1",
"@types/connect-busboy": "0.0.0",
"@types/connect-ensure-login": "^0.1.5",
"@types/connect-mongodb-session": "0.0.4",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/express-session": "^1.17.5",
"@types/figlet": "^1.2.0",
"@types/lodash": "^4.14.162",
"@types/moment": "^2.13.0",
"@types/mongodb": "^3.5.25",
"@types/morgan": "^1.7.35",
"@types/node": "^14.11.10",
"@types/passport": "^1.0.4",
"@types/ramda": "^0.27.44",
"@types/react": "^16.7.18",
"@types/react-beautiful-dnd": "^13.1.1",
"@types/react-dom": "^16.0.11",
"@types/react-image-fallback": "^8.0.1",
"@types/react-router-dom": "^4.3.5",
"@types/reactstrap": "^6.4.3",
"@types/uuid": "^3.4.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"nodemon": "^2.0.19",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^7.0.1",
"ts-node-dev": "2.0.0",
"typescript": "^4.3.5"
},
"bin": {
"merriman": ".\\dist_server\\cli\\cli.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}