-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
111 lines (111 loc) · 3.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
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
{
"name": "@acpaas-ui/react-components",
"version": "5.0.6",
"description": "Antwerp City Platform as a Service User Interface (ACPaas UI) is a component interface library for building user interfaces and responsive web apps.",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/digipolisantwerp/acpaas-ui_react"
},
"homepage": "http://digipolisantwerp.github.io/acpaas-ui_react",
"scripts": {
"start": "npx styleguidist server",
"test": "jest --coverage",
"bootstrap": "lerna bootstrap",
"build": "lerna exec --parallel -- rollup -c",
"postbuild": "rollup -c",
"publish": "lerna publish --skip-git --skip-npm",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "~6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "~6.23.0",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "~4.19.1",
"eslint-config-airbnb": "~16.1.0",
"eslint-plugin-import": "~2.11.0",
"eslint-plugin-jsx-a11y": "~6.0.3",
"eslint-plugin-react": "~7.7.0",
"flow-bin": "^0.69.0",
"handlebars": "^4.7.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.4",
"jest-cli": "^22.4.4",
"lerna": "^4.0.0",
"react-addons-test-utils": "^15.6.2",
"react-styleguidist": "^8.0.0",
"rollup": "^2.26.9",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-node-resolve": "^3.4.0",
"sinon": "^9.0.3",
"webpack": "^4.44.1"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>jest.setup.js",
"testURL": "http://localhost/",
"resetMocks": true,
"resetModules": true,
"collectCoverage": true,
"collectCoverageFrom": [
"packages/**/*.js",
"!packages/**/dist/**",
"!**/node_modules/**",
"!**/*.story.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 57,
"lines": 38,
"statements": 38
}
},
"coverageReporters": [
"lcov",
"html"
],
"coveragePathIgnorePatterns": [
"<rootDir>node_modules/",
"<rootDir>coverage/"
],
"testMatch": [
"**/?(*.)(spec).js?(x)"
],
"testPathIgnorePatterns": [
"<rootDir>node_modules/"
]
},
"dependencies": {
"@a-ui/core": "^4.3.1",
"classnames": "~2.2.6",
"css-loader": "^3.6.0",
"moment": "^2.22.2",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-input-mask": "^2.0.4",
"react-modal": "~3.5.1",
"react-scripts": "^4.0.3",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-sass": "^1.2.2",
"rxjs": "^6.6.2",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1"
}
}