-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.89 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
{
"name": "snowman",
"author": "Snowman Team",
"description": "Compare data matching algorithms with each other",
"version": "3.2.3",
"license": "MIT",
"repository": "https://github.com/HPI-Information-Systems/snowman",
"scripts": {
"licenses": "node legal/crawler.js",
"lint": "npm run eslint && npm run csslint",
"lint-fix": "npm run eslint -- --fix && npm run csslint -- --fix",
"eslint": "eslint --ext .ts,.tsx .",
"csslint": "stylelint \"./app/src/**/*.css\"",
"test": "cypress run",
"test-ci": "WAIT_ON_TIMEOUT=600000 start-server-and-test start-test-stack http://localhost:8123 test",
"start-test-stack": "npm run release-app && npm run start-api --prefix ./wrapper",
"release-app": "npm run build --prefix ./app && cpx -C \"./app/build/**/*\" ./wrapper/app/",
"release": "npm run release-app && npm run release --prefix ./wrapper"
},
"devDependencies": {
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"cpx": "^1.5.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-simple-import-sort": "^7.0.0",
"npm-license-crawler": "^0.2.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"start-server-and-test": "^1.12.0",
"stylelint": "^13.8.0",
"stylelint-config-property-sort-order-smacss": "^7.0.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.1.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"optionalDependencies": {
"cypress": "^6.7.1"
}
}