-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "compare-typeforms",
"version": "0.0.0",
"description": "Express endpoint to compare two Typeforms to see if they match",
"main": "dist/index.js",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"start": "npm run build && node dist/index.js",
"start:ts": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelSolati/compare-typeforms.git"
},
"keywords": [
"typeform",
"compare",
"express",
"node"
],
"author": "Michael Solati <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MichaelSolati/compare-typeforms/issues"
},
"homepage": "https://github.com/MichaelSolati/compare-typeforms#readme",
"dependencies": {
"@typeform/api-client": "^1.6.1",
"express": "^4.17.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/lodash": "^4.14.144",
"@types/node": "^12.12.3",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}