-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "stories",
"version": "1.0.0",
"description": "Stories 1.0",
"main": "./build/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./build/app.js",
"start:dev": "npx nodemon ./build/app.js",
"start:client": "cd client && yarn start",
"build": "yarn build:client && yarn build:server",
"build:server": "npx tsc",
"build:dev": "npx tsc --watch",
"build:client": "cd client && yarn build",
"postinstall": "cd client && yarn",
"flask:cmd": "set FLASK_APP=./ml/app.py && flask run",
"flask:bash": "export FLASK_APP=./ml/app.py && flask run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sneakysensei/stories.git"
},
"author": "Team StoryTailors",
"license": "MIT",
"bugs": {
"url": "https://github.com/sneakysensei/stories/issues"
},
"homepage": "https://github.com/sneakysensei/stories#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.6",
"@types/redis": "^2.8.28",
"@types/socket.io": "2.1.11",
"@types/yup": "^0.29.9",
"nodemon": "^2.0.6",
"tsc": "^1.20150623.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@tensorflow-models/toxicity": "^1.2.2",
"@tensorflow/tfjs": "1.7.4",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"googleapis": "^64.0.0",
"jsonwebtoken": "^8.5.1",
"redis": "^3.0.2",
"socket.io": "2.3.0",
"yup": "^0.29.3"
}
}