forked from DaVinciLord/strapi-plugin-sms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.03 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
68
69
70
71
72
{
"name": "@thetribe/strapi-plugin-sms",
"version": "1.0.2",
"description": "Send SMS inside of your Strapi app.",
"strapi": {
"name": "sms",
"displayName": "SMS",
"description": "Send SMS inside of your Strapi app.",
"kind": "plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/thetribeio/strapi-plugin-sms.git"
},
"scripts": {
"publish:latest": "cd build && npm publish --access public --tag latest",
"prepublish:latest": "npm run clean && npm run build && node build/prepublish.js",
"test:unit": "jest --verbose --coverage",
"build": "tsc",
"build:dev": "npm run build && cp ./package.json ./build && cd ./build && yarn",
"clean": "rm -rf build",
"develop": "nodemon --exec \"npm run build:dev\"",
"lint": "eslint ."
},
"dependencies": {
"@strapi/design-system": "1.6.6",
"@strapi/icons": "1.6.6",
"@strapi/utils": "4.9.0",
"google-libphonenumber": "^3.2.32",
"lodash": "4.17.21",
"prop-types": "^15.7.2",
"react-intl": "6.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@strapi/helper-plugin": "4.9.0",
"@strapi/typescript-utils": "4.9.0",
"@types/google-libphonenumber": "^7.4.23",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"msw": "1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "5.3.4",
"styled-components": "5.3.3",
"typescript": "4.6.3"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"author": {
"name": "Vincent METTON",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Vincent METTON",
"email": "[email protected]"
}
],
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"packageManager": "[email protected]"
}