-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.7 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
{
"author": "McCall Alexander",
"license": "UNLICENSED",
"name": "permalink-web-archive",
"version": "1.0.0",
"engines": {
"node": "12.10.0"
},
"description": "An Arweave Permalink Web Archive Tool",
"main": "lib/index.js",
"scripts": {
"start": "NODE_ENV=production node ./lib/index.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:js",
"build:all": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx,.js,.jsx\"",
"dev": "NODE_ENV=development babel-watch ./src/index.ts -w ./schema.graphql --extensions \".ts,.tsx,.js,.jsx\" --source-maps inline",
"test": "jest --watch",
"deploy": "yarn && git add -A && git commit -am 'deploying' && git push origin master"
},
"dependencies": {
"@postlight/mercury-parser": "^2.2.0",
"@types/cheerio": "^0.22.15",
"@types/jest": "^24.9.0",
"@types/postlight__mercury-parser": "^2.2.2",
"apollo-server-express": "^2.9.16",
"arweave": "^1.6.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"core-js": "^3.6.1",
"cross-fetch": "^3.0.4",
"dataloader": "^2.0.0",
"datocms-client": "^3.0.6",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"regenerator-runtime": "^0.13.3",
"sentiment": "^5.0.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/express": "^4.17.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-watch": "^7.0.0",
"jest": "^24.9.0",
"typescript": "^3.7.4"
}
}