-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 827 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
{
"name": "functional-programming-is-boring",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:danieljharvey/functional-programming-is-boring.git",
"author": "Daniel Harvey <danieljamesharvey@gmail.com>",
"license": "MIT",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 70
},
"dependencies": {
"axios": "^0.21.0",
"fast-check": "^2.3.0",
"fp-ts": "^2.9.0",
"io-ts": "^2.2.13",
"jest": "^26.4.2",
"monocle-ts": "^2.3.3",
"newtype-ts": "^0.3.4",
"prettier": "^2.1.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3"
},
"scripts": {
"typescript:watch": "tsc --noEmit --watch",
"typescript": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch"
}
}