-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "plugin-{your-plugin-name}",
"version": "0.0.1",
"description": "Description of your plugin",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"dev": "webpack --watch",
"build": "webpack",
"prebuild": "rimraf dist",
"test": "jest"
},
"author": "Amplication Contributor",
"license": "Apache-2.0",
"dependencies": {
"@amplication/code-gen-types": "^2.0.23",
"@amplication/code-gen-utils": "^0.0.9",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/parser": "^7.23.3",
"@babel/types": "^7.23.3",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.201",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.53.0",
"jest-mock-extended": "^3.0.5",
"prettier": "^2.6.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"jest": {
"passWithNoTests": true,
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src/tests",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"testEnvironment": "node"
}
}