-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 955 Bytes
/
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
{
"name": "mse-pa1-experiment",
"version": "1.0.2",
"author": "Manuel Alabor <manuel@alabor.me>",
"license": "CC-BY-4.0",
"dependencies": {
"@testing-library/dom": "^7.5.4",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": ">=25.0.0 <26.0.0",
"prettier": "^2.0.5",
"redom": "^3.26.0",
"rxjs": "^6.5.5",
"rxjs-marbles": "^6.0.0",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.4",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"singleQuote": true
},
"scripts": {
"start": "webpack-dev-server --open --port 3000",
"test": "jest",
"test:one": "yarn test problem-1",
"test:two": "yarn test problem-2",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
}
}