forked from frontity/frontity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.24 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
{
"name": "frontity-monorepo",
"private": true,
"scripts": {
"test": "lerna run test:ci --stream",
"test:clear": "jest --clearCache && lerna run test:ci --stream",
"test:e2e": "start-server-and-test cy:project http://localhost:3001 cy:run",
"test:all": "lint-staged && cross-env NODE_ENV=test npm run test:clear && npm run test:e2e",
"prepare": "lerna bootstrap --hoist",
"release": "lerna publish --yes",
"reinstall": "lerna clean --yes && npm run prepare",
"cy:open": "cypress open --env HEADLESS=false",
"cy:project": "cd e2e/project/ && npx frontity build && npx frontity serve --port 3001",
"cy:run": "cypress run --env HEADLESS=true"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"cross-env": "^5.2.1",
"cypress": "^3.4.1",
"eslint": "^6.2.2",
"eslint-plugin-cypress": "^2.6.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"husky": "^1.3.1",
"lerna": "^3.15.0",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"start-server-and-test": "^1.10.2",
"typescript": "^3.6.3"
},
"prettier": {}
}