This repository has been archived by the owner on Feb 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.79 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
{
"name": "@micra/application",
"version": "0.0.13",
"author": "Olavo Amorim Santos<[email protected]>",
"license": "MIT",
"main": "lib/sync/index.js",
"module": "lib/sync/index.mjs.js",
"types": "lib/sync/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "yarn rimraf lib && yarn rollup -c .config/build/rollup.config.js && tsc --emitDeclarationOnly -p tsconfig.types.json && node .config/build/copyDTs",
"format": "prettier --write 'src/**/*.{ts,tsx}' --config .prettierrc.js",
"lint": "eslint 'src/**/*.{ts,tsx}' --cache --config .config/linting/.eslintrc.js --cache-location .config/linting/.eslintcache",
"test": "jest --config .config/test/jest.config.js"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.13",
"@babel/plugin-transform-typescript": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@micra/core": "^0.0.8",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"fast-glob": "^3.2.5",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.38.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@micra/config": "^0.0.7",
"@micra/kernel": "^0.0.3",
"@micra/multi-env": "^0.0.2",
"tslib": "^2.1.0"
}
}