-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.99 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.99 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
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
{
"name": "js-to-lua",
"version": "0.0.7",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"build:prod": "nx build --configuration production",
"test": "nx test",
"test:js-to-lua": "nx test js-to-lua",
"test:all": "nx run-many --target test --all",
"test:conformance": "nx run convert-js-to-lua:e2e",
"verify:conformance": "node tools/scripts/verify-conformance-tests.js",
"lint": "nx workspace-lint && nx lint",
"lint:all": "nx workspace-lint && nx run-many --target lint --all",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"prepare": "husky install & npm run playground:assume-unchanged",
"playground:assume-unchanged": "git update-index --assume-unchanged apps/playground/src/main.ts apps/playground/src/main.spec.ts apps/playground/src/run.ts",
"playground:no-assume-unchanged": "git update-index --no-assume-unchanged apps/playground/src/main.ts apps/playground/src/main.spec.ts apps/playground/src/run.ts"
},
"private": true,
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/parser": "7.15.3",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/traverse": "^7.18.2",
"@babel/types": "7.15.0",
"@johnnymorganz/stylua": "=0.15.2",
"@slack/bolt": "^3.11.3",
"glob": "^7.2.3",
"lookpath": "^1.2.2",
"octokit": "^2.0.4",
"ramda": "^0.27.1",
"semver": "^7.3.7",
"simple-git": "^3.10.0",
"throat": "^6.0.1",
"tslib": "^2.3.0",
"yargs": "^17.6.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@jscutlery/semver": "^2.27.2",
"@nrwl/cli": "15.0.0",
"@nrwl/eslint-plugin-nx": "15.0.0",
"@nrwl/jest": "15.0.0",
"@nrwl/js": "15.0.0",
"@nrwl/linter": "15.0.0",
"@nrwl/node": "15.0.0",
"@nrwl/workspace": "15.0.0",
"@types/glob": "7.2.0",
"@types/jest": "28.1.8",
"@types/node": "18.7.1",
"@types/ramda": "^0.27.66",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"dotenv": "10.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"husky": "7.0.4",
"jest": "28.1.3",
"lint-staged": "^10.5.4",
"nx": "15.0.0",
"prettier": "2.7.1",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}