-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 916 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 916 Bytes
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
{
"name": "@sourcegraph/coding-exercise-solution-server",
"private": true,
"version": "0.0.0-DEVELOPMENT",
"license": "Apache-2.0",
"engines": {
"node": "^14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/coding-exercise-submitter.git",
"directory": "server"
},
"files": [
"dist"
],
"scripts": {
"build": "../node_modules/.bin/tsc -p .",
"watch": "../node_modules/.bin/tsc -p . -w"
},
"devDependencies": {
"@sourcegraph/tsconfig": "^4.0.1",
"@types/express": "^4.17.11",
"@types/humps": "^2.0.0",
"@types/node": "^14.14.20",
"@types/stream-to-array": "^2.3.0",
"@types/tar": "^4.0.4",
"express": "^4.17.1"
},
"dependencies": {
"codesandbox-import-utils": "^2.2.3",
"got": "^11.8.1",
"humps": "^2.0.1",
"shortid": "^2.2.16",
"stream-to-array": "^2.3.0",
"tar": "^6.1.0"
}
}