-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.02 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
{
"name": "explore-sa",
"description": "A robust GraphQL server built with Apollo Server and Node.js for seamless data querying and manipulation.",
"private": true,
"version": "0.1.0",
"license": "MIT",
"engines": {
"node": ">=16"
},
"dependencies": {
"apollo-server-express": "^2.19.2",
"cors": "^2.8.5",
"csv-parse": "^4.15.0",
"dataloader": "^2.0.0",
"dotenv": "^16.3.0",
"graphql": "^15.5.0",
"lodash": "^4.17.21",
"mongodb": "^6.3.0",
"mysql2": "^2.2.5",
"p-queue": "^6.6.2",
"sequelize": "^6.5.0",
"yargs": "^16.2.0"
},
"optionalDependencies": {
"pg": "^8.5.0",
"pg-hstore": "^2.3.3",
"sqlite3": "^5.0.0",
"tedious": "^16.4.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/node": "^7.22.0",
"@babel/preset-env": "^7.22.00",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.199",
"apollo-server-testing": "^2.6.7",
"jest": "^29.7.0",
"sequelize-cli": "^6.2.0",
"ts-jest": "^29.1.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
},
"main": "src/app.js",
"scripts": {
"sql": "node -r dotenv/config ./node_modules/.bin/sequelize --config ./build/orm-config.js",
"parse:postcodes": "tsc && node -r dotenv/config ./build/parse:postcodes",
"parse:postcodes:lsoa": "tsc && node -r dotenv/config ./build/parse:postcodes:lsoa",
"parse:properties": "tsc && node -r dotenv/config ./build/parse:markers:and:properties.js",
"parse:incidents": "tsc && node -r dotenv/config ./build/parse:markers:and:incidents",
"parse:areas": "tsc && node -r dotenv/config ./build/parse:areas",
"parse:timelines": "tsc && node -r dotenv/config ./build/parse:timelines",
"parse:mongo": "tsc && node -r dotenv/config ./build/parse:mongo",
"build": "tsc",
"start:serve": "node -r dotenv/config ./build/app.js",
"start": "tsc-watch --onSuccess \"node -r dotenv/config --inspect=0.0.0.0 ./build/app.js\"",
"test": "node -r dotenv/config ./node_modules/.bin/jest"
}
}