forked from InseeFr/Trevas-TS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.35 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.35 KB
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
{
"name": "vtl-tools",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/InseeFr/vtl-tools"
},
"license": "MIT",
"author": "INSEE (http://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"
}
},
"scripts": {
"antlr": "antlr4-tool -l javascript -o test/ vtl-sources/Vtl-2.0/Vtl.g4",
"start-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",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"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",
"antlr4-tool": "^1.1.0",
"babel-jest": "^25.1.0",
"babel-loader": "8.1.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.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": "^3.0.0",
"jest": "^25.1.0",
"node-sass": "^4.13.0",
"postcss-scss": "^2.0.0",
"prettier": "2.0.5",
"rollup": "^2.1.0",
"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": "^5.3.0",
"rollup-plugin-web-worker-loader": "^1.1.1",
"sass-loader": "^8.0.0",
"source-map-explorer": "^2.4.1",
"storybook-readme": "^5.0.8",
"style-loader": "^1.1.2"
},
"dependencies": {
"antlr4": "^4.7.2",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"data-forge": "^1.7.7",
"griddle-react": "^1.13.1",
"jsoneditor": "^8.6.4",
"jsoneditor-react": "^3.0.0",
"moment": "^2.24.0",
"platform": "^1.3.5",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-sortable-tree": "^2.7.1",
"string-hash": "^1.1.3"
},
"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"
]
}
}