-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 908 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": "dep-management-examples",
"private": true,
"engines": {
"node": "^12.22.6",
"npm": "^6.14.15"
},
"scripts": {
"ava": "ava",
"typecheck": "tsc --noEmit",
"test:unit": "nyc npm run ava",
"lint": "eslint './src/**/*' './test/**/*' --cache --ext .js --ext .ts --ext .json",
"test": "npm run lint && npm run typecheck && npm run test:unit"
},
"dependencies": {
"fp-ts": "^2.11.4"
},
"devDependencies": {
"@coorpacademy/eslint-plugin-coorpacademy": "^10.3.1",
"@types/lodash": "^4.14.174",
"@types/node": "^16.10.1",
"@types/request-promise": "^4.1.48",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"lodash": "^4.17.21",
"nyc": "^15.1.0",
"source-map-support": "^0.5.20",
"ts-node": "^9.1.1",
"typescript": "^4.4.3"
}
}