forked from scalprum/scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
{
"name": "scalprum",
"repository": "https://github.com/scalprum/scaffloding.git",
"author": "Martin Marosi <[email protected]>",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/**"
],
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^6.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.168",
"@types/react": "^16.9.53",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.4.1",
"babel-jest": "^26.5.2",
"chokidar": "^3.4.3",
"cypress": "^5.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "~26.5.3",
"lerna": "^3.22.1",
"prettier": "^2.1.2",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-pluginutils": "^2.8.2",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3"
},
"scripts": {
"start": "lerna run --parallel start:esm",
"lint": "eslint ./**/*.{ts,tsx,js}",
"build": "lerna run build",
"test": "jest --config jest.config.js --coverage",
"cypress": "cypress open",
"cypress:run": "cypress run",
"prepare": "npm run build",
"start:test": "npm run ---prefix packages/test-app start:test -- --port 8123 --mode production",
"clear": "lerna clean -y && rm -rf node_modules"
}
}