-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "timeline-backend",
"private": true,
"version": "0.1.8",
"description": "Back-end for YourTimeline.app built with Strapi",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"cm": "git-cz",
"check-format": "yarn prettier --list-different",
"lint:errors": "yarn lint --quiet",
"lint:fix": "yarn lint --fix",
"lint": "eslint --ignore-path .gitignore './api/**/*.{js,json}' './config/**/*.{js,json}' './extensions/**/*.{js,json}'",
"prettier": "prettier --ignore-path --write './api/**/*.+(js|json)' './config/**/*.+(js|json)' './extensions/**/*.+(js|json)'",
"release": "standard-version",
"validate": "npm-run-all --parallel check-format lint",
"prepare": "yarn husky install",
"deploy": "./deploy.sh"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-prettier": "^3.3.1",
"git-cz": "^4.7.6",
"husky": "^6.0.0",
"lint-staged": "^10.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"standard-version": "^8.0.1"
},
"dependencies": {
"knex": "0.21.4",
"pg": "^8.5.1",
"sqlite3": "latest",
"strapi": "3.5.4",
"strapi-admin": "3.5.4",
"strapi-connector-bookshelf": "3.5.4",
"strapi-plugin-content-manager": "3.5.4",
"strapi-plugin-content-type-builder": "3.5.4",
"strapi-plugin-documentation": "3.5.4",
"strapi-plugin-email": "3.5.4",
"strapi-plugin-graphql": "3.5.4",
"strapi-plugin-upload": "3.5.4",
"strapi-plugin-users-permissions": "3.5.4",
"strapi-utils": "3.5.4"
},
"author": {
"name": "Andreas Olsson"
},
"strapi": {
"uuid": "1d6f6034-734d-4abe-b318-2cec2dd66b09"
},
"engines": {
"node": ">=10.16.0 <=14.x.x",
"npm": "^6.0.0"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}