-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.78 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
{
"name": "celluloid",
"version": "2.0.0",
"author": "Erwan Queffélec <erwan.queffelec@gmail.com>",
"license": "MIT",
"description": "Celluloid helps students and teachers to interact by annotating online educational videos",
"repository": "http://github.com/celluloid-edu/celluloid",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "yarn && yarn setup:packages",
"setup:packages": "lerna run setup",
"watch": "yarn build-libs && concurrently \"yarn watch-types\" \"yarn watch-validators\" \"yarn watch-server\" \"yarn watch-client\"",
"dev": "yarn && tsc -b && concurrently --kill-others --names \"TSC,WATCH,RUN\" --prefix \"({name})\" --prefix-colors \"yellow.bold,yellow.bold,cyan.bold\" \"tsc -b --watch --preserveWatchOutput\" \"lerna run --parallel dev --stream\"",
"clean": "for package in $(ls packages); do (cd packages/${package} && yarn clean); done",
"build": "lerna run build",
"deploy": "./bin/deploy",
"start": "(cd packages/server && yarn start)",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx",
"prettier:all": "prettier --ignore-path .eslintignore \"**/*.{js,jsx,ts,tsx,md}\"",
"--shortcuts to run commands in workspaces--": "",
"client": "yarn workspace @celluloid/client",
"server": "yarn workspace @celluloid/server",
"docker-build": "docker build -t celluloid:local ."
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"babel-jest": "^27.0.1",
"concurrently": "^7.5.0",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint_d": "^12.2.1",
"jest": "^27.0.1",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.1",
"ts-loader": "^8.0.11",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"eslint-config-react-app": "^7.0.1",
"lerna": "^6.0.1",
"orval": "^6.10.3",
"server": "^1.0.37",
"swagger-ui-express": "^4.6.0",
"tsoa": "^4.1.3"
},
"prettier": {
"trailingComma": "es5",
"proseWrap": "always",
"singleQuote": true,
"overrides": [
{
"files": [
"*.yml",
"*.yaml"
],
"options": {
"printWidth": 120
}
}
]
}
}