forked from CarnegieLearningWeb/UpGrade
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.69 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
{
"name": "UpGrade",
"version": "4.2.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",
"husky": "^8.0.1",
"is-ci": "^3.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"scripts": {
"prepare": "is-ci || husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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"
}