-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
{
"author": "OttoHung <totsi04@gmail.com>",
"description": "This is a demo project",
"dependencies": {
"fs": "latest"
},
"devDependencies": {
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-react": "latest",
"tsconfig-paths": "latest",
"ts-node": "latest",
"typescript": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@types/node": "latest"
},
"license": "MIT",
"name": "demo",
"private": true,
"scripts": {
"build": "yarn workspaces run build",
"clean": "ts-node -r tsconfig-paths/register scripts/clean.ts *.tsbuildinfo workspaces/**/lib workspaces/**/dist yarn-error.log",
"clean:install": "ts-node -r tsconfig-paths/register scripts/clean.ts node_modules",
"endpoint": "yarn workspace endpoint",
"fix": "eslint --fix",
"interview": "yarn workspace interview",
"lint": "eslint",
"servlet": "yarn workspace servlet",
"test": "yarn workspaces run test",
"test:time": "yarn workspaces run test:time",
"utils": "yarn workspace utils"
},
"workspaces":[
"workspaces/endpoint",
"workspaces/interview",
"workspaces/servlet",
"workspaces/tutorials",
"workspaces/utils"
],
"version": "0.1.0"
}