-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "@ntx/ntx-form-plugin-starter",
"private": true,
"version": "1.0.0",
"description": "A template repository for creating Nintex Form plugins",
"type": "module",
"scripts": {
"start": "npx ntx-localdev -f ./build/dev",
"build:dev": "rollup -c --environment DEV --watch",
"build": "rollup -c",
"publish": "npm run build && node ./tools/publish.js",
"generate": "node ./tools/generate.js",
"lint": "eslint ."
},
"author": "Nintex",
"license": "Apache-2.0",
"dependencies": {
"@nintex/form-plugin-contract": "^1.0.0-beta.2",
"@open-wc/scoped-elements": "^1.3.3",
"lit": "^2.8.0"
},
"devDependencies": {
"@azure/storage-blob": "^12.16.0",
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@ntx-xt/ntx-localdev": "^1.0.6",
"@open-wc/eslint-config": "^12.0.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"dotenv": "^16.3.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.8",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prompt": "^1.3.0",
"rollup": "^3.9.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-lit-plugin": "^2.0.1",
"typescript": "^4.9.5"
}
}