-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.54 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
{
"name": "manimjs",
"version": "1.0.0",
"description": "",
"scripts": {
"build:prod": "tsc -p tsconfig.build.json",
"start:dev": "ts-node src/cli/main.ts",
"start:prod": "node dist/cli/main.js",
"watch:dev": "nodemon --config nodemon.json",
"debug:dev": "nodemon --config nodemon-debug.json",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint --fix ./src --ext .ts",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:cov": "NODE_ENV=test jest --coverage",
"test:debug": "NODE_ENV=test node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "NODE_ENV=test jest --config ./test/jest-e2e.json",
"prepare": "husky install",
"generate-ast": "ts-node ./src/cli/tool/AstGenerator.ts ./src/cli/ast"
},
"repository": {
"type": "git",
"url": "git+https://github.com/booleans-oss/manimjs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/booleans-oss/manimjs/issues"
},
"homepage": "https://github.com/booleans-oss/manimjs#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"commitiquette": "^1.2.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "~12.3.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"main": ".eslintrc",
"directories": {
"doc": "docs",
"test": "test"
},
"config": {
"commitizen": {
"path": "./node_modules/commitiquette"
}
},
"dependencies": {
"recast": "^0.20.5",
"tslog": "^3.3.2"
}
}