-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.07 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.07 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
{
"name": "UpGrade",
"version": "6.4.0",
"description": "This is a combined repository for UpGrade, an open-source platform to support large-scale A/B testing in educational applications. Learn more at www.upgradeplatform.org",
"main": "index.js",
"devDependencies": {
"@angular-eslint/eslint-plugin": "^14.1.2",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"is-ci": "^3.0.0",
"lint-staged": "^13.0.3",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"prettier": "^2.7.1"
},
"scripts": {
"prepare": "is-ci || husky install",
"lint": "eslint --quiet -c .eslintrc.js --ext .ts './{frontend,backend,types,clientlibs}/**/*.ts'",
"prettier:write": "prettier --config .prettierrc './{frontend,backend,types,clientlibs}/**/*.{ts,js,html,json,scss}' --write",
"prettier:check": "prettier --config .prettierrc './{frontend,backend,types,clientlibs}/**/*.{ts,js,html,json,scss}' --check"
},
"lint-staged": {
"./frontend/projects/upgrade/src/**/*.{ts,js,html,json,scss}": [
"prettier --config .prettierrc --write"
],
"./frontend/projects/upgrade/src/**/*.ts": [
"eslint -c .eslintrc.js --ext .ts"
],
"./clientlibs/js/{src, test}/**/*.ts": [
"prettier --config .prettierrc --write",
"eslint -c .eslintrc.js --ext .ts"
],
"./types/**/*.ts": [
"prettier --config .prettierrc --write",
"eslint -c .eslintrc.js --ext .ts"
],
"./backend/packages/Upgrade/{src, test}/**/*.ts": [
"prettier --config .prettierrc --write",
"eslint -c .eslintrc.js --ext .ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/CarnegieLearningWeb/UpGrade.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CarnegieLearningWeb/UpGrade/issues"
},
"homepage": "https://github.com/CarnegieLearningWeb/UpGrade#readme"
}