-
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.86 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.86 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": "emblem-ui",
"version": "0.2.0",
"description": "Emblem UI React component library",
"repository": {
"type": "git",
"url": "https://github.com/tylde/emblem-ui.git"
},
"author": "Mateusz Kalinowski <mr.mkalinowski@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn build:rollup && yarn build:next",
"build:next": "cd ./workspace && next build && next export",
"build:rollup": "rollup --config ./config/rollup/rollup.config.js",
"build:watch": "yarn build:rollup --watch",
"build:production": "cross-env NODE_ENV=production yarn build:rollup",
"dev": "npm-run-all --parallel --print-label build:watch next",
"next": "cd ./workspace && next -p 7171",
"site": "cross-env NODE_ENV=production yarn build",
"test": "jest",
"test:coverage": "yarn run test --coverage --collectCoverageFrom=**/src/**/*.{ts,tsx}",
"test:ci": "yarn run test:coverage --ci"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/register": "^7.8.3",
"@emblem-ui/core": "0.2.0",
"@emblem-ui/data": "0.2.0",
"@emblem-ui/form": "0.2.0",
"@emblem-ui/layout": "0.2.0",
"@emblem-ui/styles": "0.2.0",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"@tanem/react-nprogress": "^3.0.16",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.3",
"@types/node": "^13.1.7",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^4.4.2",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.7",
"cross-env": "^6.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-react-app": "^5.2.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"expect": "^25.1.0",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"next": "^9.2.0",
"npm-run-all": "^4.1.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.2.1",
"typescript": "^3.7.4"
},
"jest": {
"verbose": true,
"testRegex": "/__tests__/.*test.[jt]sx?$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"setupFilesAfterEnv": [
"<rootDir>/config/tests/settings.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/config/typescript/tsconfig.json"
}
}
},
"keywords": [
"emblem",
"ui",
"react",
"component",
"library"
]
}