-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.05 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
68
69
70
{
"name": "bbb-analytics",
"version": "1.0.0",
"description": "Analytics",
"main": "index.ts",
"scripts": {
"start": "node dist/index.js",
"migrate": "knex migrate:latest",
"makeMigration": "knex migrate:make",
"seed": "knex seed:run",
"rolldown": "knex migrate:down",
"dev": "ts-node-dev src/index.ts",
"lint": "eslint . --fix",
"test": "ts-mocha --icu-data-dir=./node_modules/full-icu tests/*.ts tests/*.js --exit --require ./tests/env-setup.js --timeout 3000",
"pre-commit": "lint-staged",
"build": "./node_modules/.bin/tsc -p tsconfig.json"
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/bbb-analytics.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/betagouv/bbb-analytics/issues"
},
"homepage": "https://github.com/betagouv/bbb-analytics#readme",
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.16.3",
"express-jwt": "^6.0.0",
"express-sanitizer": "^1.0.6",
"full-icu": "^1.3.4",
"jsonwebtoken": "^8.2.2",
"knex": "^0.21.18",
"pg": "^8.6.0",
"ts-mocha": "^8.0.0"
},
"devDependencies": {
"@types/node": "^15.12.4",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"nock": "^13.1.0",
"nodemon": "^2.0.7",
"pg-connection-string": "^2.5.0",
"prettier": "^2.3.1",
"rewire": "^5.0.0",
"sinon": "^10.0.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.3"
},
"prettier": {
"singleQuote": true
}
}