This repository was archived by the owner on Jan 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.33 KB
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
{
"name": "curry",
"version": "1.0.0",
"main": "index.js",
"author": "Sindre Øye Svendby <sinsvend@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "nodemon --watch src --exec npm run restart",
"restart": "npm run build && npm start",
"build": "babel src/ -d dist",
"heroku-postbuild": "npm run build",
"start": "node dist/index.js",
"test": "bash ./run-test.sh"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"isomorphic-unfetch": "^2.1.1",
"mssql": "^4.1.0",
"nodemon": "^1.17.5",
"npm": "^6.2.0",
"rollbar": "^2.4.0",
"route-cache": "0.4.4"
},
"engines": {
"node": "10"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0-beta.49",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.74.0",
"jest": "^23.4.2"
},
"jest": {
"testMatch": [
"**/test/**/*.test.js"
],
"verbose": true,
"testURL": "http://localhost/"
},
"babel": {
"env": {
"test": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
}
}