-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
{
"name": "littlealchemy2-api",
"version": "1.0.0",
"main": "index.js",
"author": "Sasha Moak <[email protected]>",
"license": "MIT",
"repository": "github:smoak/little-alchemy-two-graphql",
"engines": {
"node": ">= 18 < 19"
},
"scripts": {
"build": "run-s 'build:*'",
"build:compile": "tsc --build tsconfig.json",
"build:copyfiles": "copyfiles './src/*.html' 'dist'",
"clean": "rimraf 'dist' 'coverage'",
"postinstall": "run-s build:compile",
"prestart": "run-s build",
"start": "nodemon 'src/index.ts' --exec 'ts-node' src/index.ts -e ts,graphql",
"test": "run-s test:lint test:unit",
"test:lint": "jest --config config/jest/lint.js",
"test:unit": "jest --config config/jest/unit.js --coverage",
"test:unit:watch": "jest --config config/jest/unit.js --watchAll"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/graphql-relay": "^0.6.0",
"@types/jest": "^29.5.3",
"@types/lowdb": "^1.0.11",
"@types/node": "^18.17.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-jest": "^29.6.3",
"copyfiles": "^2.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.0",
"jest-junit": "^16.0.0",
"jest-runner-eslint": "^2.1.0",
"jest-watch-typeahead": "^2.2.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"fuse.js": "^6.6.2",
"graphql": "^14.6.0",
"graphql-http": "^1.21.0",
"graphql-relay": "^0.6.0",
"lowdb": "^1.0.0"
},
"volta": {
"node": "18.17.1"
}
}