-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 975 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 975 Bytes
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
{
"name": "example-nix-typescript",
"description": "Example of building typescript apps with nix",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"lint": "eslint -c eslint.config.mjs src",
"pretty": "prettier src/",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"author": "Erik Sutherland <erik.misu@gmail.com>",
"license": "ISC",
"dependencies": {
"ramda": "^0.30.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/jest": "^29.5.14",
"@types/ramda": "^0.30.2",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript-eslint": "^8.14.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"semi": false
}
}