forked from InseeFr/Trevas-TS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.64 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@inseefr/trevas-js",
"version": "0.2.0",
"description": "JavaScript tools & engine for the [Validation and Transformation Language](https://sdmx.org/?page_id=5096)",
"repository": {
"type": "git",
"url": "https://github.com/InseeFr/Trevas-JS"
},
"license": "MIT",
"author": "INSEE (https://www.insee.fr)",
"private": true,
"workspaces": [
"packages/*"
],
"contributor": [
{
"name": "Renaud Genevois",
"email": "renaud.genevois@insee.fr"
},
{
"name": "Nicolas Laval",
"email": "nicolas.laval@insee.fr"
}
],
"jest": {
"collectCoverageFrom": [
"packages/**/*.{js,jsx}",
"!packages/vtl-*-antlr-tools/**/*",
"!packages/**/*.stories.js"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"testResultsProcessor": "jest-sonar-reporter",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"scripts": {
"storybook": "cross-env NODE_PATH=src/ start-storybook -p 9999",
"build-storybook": "cross-env NODE_PATH=src/ build-storybook -o built-storybook/storybook",
"test": "cross-env NODE_PATH=src/ jest",
"test-watch": "cross-env NODE_PATH=src/ jest --watch",
"build": "yarn workspaces run build",
"analyze": "yarn workspaces run analyze"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-react-jsx": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-knobs": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addon-options": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.2.1",
"babel-loader": "8.2.3",
"cross-env": "^7.0.2",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.2.1",
"jest-sonar-reporter": "^2.0.0",
"postcss-scss": "^3.0.4",
"prettier": "2.5.1",
"rollup": "^2.37.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-web-worker-loader": "^1.1.1",
"sass": "^1.45.0",
"sass-loader": "^10.1.1",
"source-map-explorer": "^2.5.2",
"storybook-readme": "^5.0.8",
"style-loader": "^2.0.0"
},
"dependencies": {
"@eurostat/vtl-editor": "^0.1.1",
"antlr4ts": "^0.5.0-alpha.4",
"classnames": "^2.2.6",
"core-js": "^3.8.3",
"data-forge": "^1.7.7",
"date-fns": "^2.27.0",
"griddle-react": "^1.13.1",
"jsoneditor": "^9.1.8",
"jsoneditor-react": "^3.0.0",
"monaco-editor": "^0.27.0",
"platform": "^1.3.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-monaco-editor": "^0.44.0",
"react-sortable-tree": "^2.7.1",
"string-hash": "^1.1.3",
"typescript": "^4.4.3",
"vtl-2-0-antlr-tools-ts": "^0.1.6"
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true,
"endOfLine": "auto"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}