-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "safe-places-server",
"version": "2.1.0-alpha",
"private": true,
"scripts": {
"migrate:up": "spdl migrate:latest --scope private --env development",
"migrate:down": "spdl migrate:rollback --scope private --env development",
"seed:dev": "spdl seed:run --scope private --env development",
"seed:test": "spdl migrate:latest --scope private --env test",
"start": "node ./bin/www",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"pretest": "npm run migrate:up && npm run seed:test",
"test": "nyc --reporter=html --reporter=text mocha test/**/*.* --exit",
"posttest": "npm run seed:dev",
"test:int": "mocha test/integration/*.* --exit",
"test:unit": "mocha test/unit/*.* --exit",
"test:all": "mocha test/**/*.* --exit",
"format": "prettier --write \"**/*.{js,json}\""
},
"pre-commit": [
"format",
"lint",
"test"
],
"dependencies": {
"@google-cloud/secret-manager": "^3.1.0",
"@google-cloud/storage": "^5.0.1",
"@pathcheck/data-layer": "^1.0.5",
"@pathcheck/safeplaces-auth": "^2.1.1",
"@pathcheck/safeplaces-server": "^0.0.14",
"adm-zip": "^0.4.14",
"ajv": "^6.12.2",
"atob": "^2.1.2",
"aws-sdk": "^2.728.0",
"bcrypt": "^5.0.0",
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "8.2.0",
"google-auth-library": "^6.0.6",
"jsonwebtoken": "^8.5.1",
"moment": "~2.19.3",
"ngeohash": "^0.6.3",
"uuid": "^8.3.0",
"xpolicy": "^0.3.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.6.0",
"jshint": "^2.12.0",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"random-coordinates": "^1.0.1",
"sinon": "^9.0.2"
}
}