-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.01 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "stashapp",
"version": "0.0.1",
"main": "index.js",
"bin": "./dist/index.js",
"license": "MIT",
"scripts" : {
"start": "nodemon",
"build": "rimraf dist && tsc",
"package": "yarn build && pkg package.json --out-path builds --options max_old_space_size=4096 && sh copy_native_modules.sh && yarn package:ffmpeg",
"package:ffmpeg": "sh download_ffmpeg.sh",
"schema": "gql-gen",
"lint": "tslint -c ./tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --fix -c ./tslint.json 'src/**/*.ts'"
},
"pkg": {
"scripts": [
"require.js",
"dist/**/*.js"
],
"assets": [
"src/**/*.graphql",
"dist-ui/**/*"
]
},
"dependencies": {
"apollo-server": "2.3.1",
"apollo-server-express": "2.3.1",
"commander": "2.19.0",
"express": "4.16.4",
"file-type": "10.7.0",
"fs-extra": "7.0.1",
"glob": "7.1.3",
"graphql": "14.0.2",
"graphql-tag": "2.10.0",
"graphql-import": "0.7.1",
"inquirer": "6.2.1",
"knex": "0.16.3",
"mathjs": "5.4.0",
"objection": "1.4.0",
"p-queue": "3.0.0",
"read-chunk": "3.0.0",
"sqlite3": "4.0.4",
"tempy": "0.2.1",
"winston": "3.1.0"
},
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/express": "4.16.0",
"@types/file-type": "10.6.0",
"@types/fs-extra": "5.0.4",
"@types/glob": "7.1.1",
"@types/graphql": "14.0.4",
"@types/inquirer": "0.0.43",
"@types/mathjs": "4.4.4",
"@types/node": "10.12.18",
"@types/p-queue": "3.0.0",
"@types/read-chunk": "2.1.0",
"@types/tempy": "0.2.0",
"graphql-code-generator": "0.15.2",
"graphql-codegen-add": "0.15.2",
"graphql-codegen-time": "0.15.2",
"graphql-codegen-typescript-resolvers": "0.15.2",
"graphql-codegen-typescript-server": "0.15.2",
"graphql-codegen-typescript-common": "0.15.2",
"nodemon": "1.18.9",
"pkg": "4.3.5",
"rimraf": "2.6.3",
"ts-node": "7.0.1",
"tsconfig-paths": "3.7.0",
"tslint": "5.12.0",
"typescript": "3.2.2"
}
}