-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.68 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
{
"name": "@pipe-dream/core",
"version": "1.1.0a",
"description": "Pipe Dream core functionality used by other repos",
"main": "dist/pipe-dream.js",
"files": [
"src",
"dist"
],
"repository": "github.com:pipe-dream/core",
"author": "Anders Jurisoo <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "7.5.5",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.1.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"jest-transform-stub": "^2.0.0",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack-cli": "^3.3.6"
},
"scripts": {
"build": "webpack --mode development",
"watch": "yarn build --watch",
"test": "cross-env NODE_ENV=test jest",
"coverage": "jest --collectCoverage=true --coverageReporters=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"coverage-dev": "jest --collectCoverage=true",
"cover": "yarn coverage-dev",
"lint": "npx eslint src"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue",
"ts"
],
"transform": {
".*\\.(js)$": "babel-jest",
".*\\.(vue)$": "vue-jest",
".*\\.(string)$": "jest-raw-loader",
".*\\.(tsx?)$": "ts-jest"
}
},
"dependencies": {
"@types/lodash": "^4.14.149",
"@vue/test-utils": "^1.0.0-beta.29",
"axios": "^0.19.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"brace": "^0.11.0",
"change-case": "^3.1.0",
"collect.js": "^4.6.5",
"coveralls": "^3.0.5",
"cross-env": "^5.1",
"cycle": "^1.0.3",
"deepmerge": "^3.2.0",
"eslint-plugin-disable": "^1.0.5",
"jest": "^24.8.0",
"jest-raw-loader": "^1.0.1",
"laravel-mix": "^4.0.14",
"laravel-mix-purgecss": "^4.1",
"laravel-mix-tailwind": "^0.1.0",
"object-hash": "^1.3.1",
"pluralize": "^7.0.0",
"resolve-url-loader": "^2.3.1",
"sass": "^1.15.2",
"sass-loader": "^7.1.0",
"tailwindcss": "^1.0",
"ts-loader": "^6.0.4",
"v-title": "^1.0.7",
"v-tooltip": "^2.0.3",
"vue": "^2.5.17",
"vue-class-component": "^7.2.2",
"vue-highlightjs": "^1.3.3",
"vue-jest": "^3.0.4",
"vue-textarea-autosize": "^1.0.4",
"vuex": "^3.1.0",
"vuex-class-component": "^2.2.1",
"webpack": "^4.37.0"
}
}