forked from frontity/frontity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.67 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
{
"name": "frontity-monorepo",
"private": true,
"scripts": {
"test": "lerna run test:ci --stream",
"test:ci": "jest --clearCache && lerna run test:ci --stream",
"codecov": "curl -s https://codecov.io/bash | bash -s",
"e2e:prod:all": "cd e2e/project/ && npx frontity build && npx frontity serve --port 3001",
"e2e:prod:module": "cd e2e/project/ && npx frontity build --publicPath /custom/path --target module && npx frontity serve --port 3001",
"e2e:prod:es5": "cd e2e/project/ && npx frontity build --publicPath http://localhost:3001/custom/path/ --target es5 && npx frontity serve --port 3001",
"prepare": "lerna bootstrap --hoist",
"reinstall": "lerna clean --yes && npm run prepare"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.1.1",
"@changesets/cli": "^2.4.0",
"@types/jest": "^24.0.25",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"cross-env": "^5.2.1",
"eslint": "^6.2.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-cypress": "^2.6.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-jsdoc": "^27.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-tsdoc": "^0.2.5",
"husky": "^4.2.5",
"jest": "^24.9.0",
"lerna": "^3.22.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.1",
"ts-jest": "^24.0.2",
"typescript": "3.8.3"
},
"prettier": {
"trailingComma": "es5",
"arrowParens": "always"
},
"husky": {
"hooks": {
"pre-commit": "node lint-staged.js"
}
}
}