-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.25 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
{
"version": "2.1.0",
"name": "@cognitoforms/vuemodel",
"license": "MIT",
"main": "lib/index.js",
"browser--disabled": "out/vuemodel.js",
"types": "@types/index.d.ts",
"repository": "github:cognitoforms/VueModel",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:typescript": "rimraf ./@types && rimraf ./lib && tsc",
"build:webpack": "rimraf ./out && webpack --mode=production",
"build": "npm run build:typescript && npm run build:webpack",
"build:watch": "nodemon -e ts --watch src/ -x \"npm run build\"",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"test:watch": "jest --watch",
"lint": "eslint --fix **/src/*.[jt]s",
"release": "dotenv release-it"
},
"devDependencies": {
"@babel/core": "^7.22.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-decorators": "^7.22.5",
"@babel/preset-env": "^7.22.6",
"@babel/preset-typescript": "^7.22.5",
"@release-it/keep-a-changelog": "^1.1.1",
"@types/jest": "^24.0.11",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"dotenv-cli": "^3.1.0",
"dts-generator": "^2.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^1.0.1",
"jest": "^24.5.0",
"jest-junit": "^12.0.0",
"nodemon": "^2.0.1",
"release-it": "^13.6.6",
"rimraf": "^3.0.0",
"tslib": "^1.9.3",
"typescript": "^4.9.5",
"vue-template-compiler": "^2.7.15",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"@cognitoforms/model.js": "^0.9.0",
"vue": "^2.7.15",
"vue-class-component": "^7.0.1",
"vue-property-decorator": "^7.3.0"
}
}