forked from pancakeswap/pancake-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.25 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
56
{
"name": "pancake-frontend",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"apis/*"
],
"scripts": {
"dev": "turbo run dev --filter=web...",
"dev:aptos": "yarn turbo run dev --filter=aptos-web...",
"storybook": "turbo run start --filter=uikit...",
"build": "turbo run build --filter=web...",
"start": "turbo run start --filter=web",
"test:config": "yarn workspace web run test:config",
"test:ci": "yarn turbo run test --filter=[HEAD^1]",
"lint": "turbo run lint --filter=web",
"lint:report": "eslint --no-error-on-unmatched-pattern --max-warnings=0",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"format:check:staged": "lint-staged",
"e2e:ci": "turbo run integration-test --filter=e2e...[HEAD^1]",
"updateLPsAPR": "yarn turbo run build --filter=@pancakeswap/sdk --filter=@pancakeswap/farm --filter=@pancakeswap/token-lists && NODE_PATH=./apps/web/src ts-node --project ./apps/web/tsconfig.json --compiler-options '{\"module\":\"commonjs\"}' scripts/updateLPsAPR.ts",
"updateAptosLPsAPR": "yarn turbo run build --filter=@pancakeswap/aptos-swap-sdk && NODE_PATH=./apps/aptos/src ts-node --project ./apps/aptos/tsconfig.json --compiler-options '{\"module\":\"commonjs\"}' scripts/updateAptosLpsAPR/index.ts",
"postinstall": "turbo run --filter=web postinstall",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release-packages": "turbo run build --filter=./packages/* && changeset version && changeset publish"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@stylelint/postcss-css-in-js": "^0.37.2",
"husky": "^7.0.0",
"lint-staged": "^12.3.4",
"prettier": "^2.7.1",
"serve": "^12.0.0",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-styled-components": "^0.1.1",
"tilg": "^0.1.1",
"ts-node": "^10.9.1",
"tsconfig": "*",
"turbo": "^1.6.1",
"vitest": "^0.23.1"
},
"volta": {
"node": "16.18.0"
}
}