-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.4 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "formkit-library",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"deploy": "npm run build",
"start": "ng serve",
"build": "cross-env NODE_ENV=production npm run build:lib && npm run build:app",
"postbuild": "cp README.md dist/formkit",
"build:app": "cross-env NODE_ENV=production ng build showcase --prod",
"build:lib": "cross-env NODE_ENV=production ng build formkit --prod",
"test": "npm run test:lib && npm run build:lib && npm run test:app",
"test:lib": "jest --config ./jest.lib.config.js",
"test:app": "jest --config ./jest.app.config.js --passWithNoTests",
"eslint": "eslint --ext .ts projects/",
"eslint:fix": "eslint --fix --ext .ts projects/",
"e2e": "concurrently -k -s first \"ng serve\" \"npm run cypress:run\"",
"e2e:watch": "concurrently -k -s first \"ng serve\" \"npm run cypress:open\"",
"cypress:run": "wait-on http://localhost:4200 && npx cypress run",
"cypress:open": "wait-on http://localhost:4200 && npx cypress open"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.2.14",
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/forms": "^11.2.14",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@angular/router": "^11.2.14",
"@tailwindcss/forms": "^0.3.2",
"@types/jest": "^26.0.9",
"concurrently": "^5.3.0",
"jest": "^26.3.0",
"jest-preset-angular": "^8.3.1",
"ng-mocks": "^11.3.1",
"ngx-build-plus": "^10.1.1",
"rxjs": "~6.6.0",
"tslib": "^2.1.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.13",
"@angular-eslint/builder": "0.8.0-beta.2",
"@angular-eslint/eslint-plugin": "0.8.0-beta.2",
"@angular-eslint/eslint-plugin-template": "0.8.0-beta.2",
"@angular-eslint/schematics": "^0.8.0-beta.7",
"@angular-eslint/template-parser": "0.8.0-beta.2",
"@angular/cli": "^11.2.13",
"@angular/compiler-cli": "^11.2.14",
"@angular/language-service": "^11.2.14",
"@briebug/cypress-schematic": "^5.0.0",
"@compodoc/compodoc": "^1.1.9",
"@cypress/webpack-preprocessor": "^5.8.0",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@ngx-rocket/scripts": "^4.0.0",
"@types/jasmine": "^3.6.3",
"@types/jasminewd2": "^2.0.3",
"@types/node": "^12.19.16",
"@types/ws": "^7.2.5",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"autoprefixer": "^10.0.2",
"codelyzer": "^6.0.0",
"cross-env": "^7.0.2",
"cypress": "^7.3.0",
"eslint": "^7.19.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"htmlhint": "^0.11.0",
"https-proxy-agent": "^5.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^26.6.3",
"jest-preset-angular": "^8.3.2",
"karma-coverage": "~2.0.3",
"ng-mocks": "^11.5.0",
"ng-packagr": "^11.1.3",
"postcss": "^8.1.9",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.1.0",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"protractor": "~7.0.0",
"tailwindcss": "^2.0.1",
"ts-loader": "7.0.5",
"ts-node": "~8.3.0",
"tsconfig-paths": "^3.9.0",
"tslint": "~6.1.0",
"typescript": "~4.0.2",
"wait-on": "^4.0.2",
"webpack": "^4.46.0"
}
}