-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.28 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
{
"name": "@age-online/monorepo",
"author": "Christoph Sprenger",
"version": "0.0.1",
"private": true,
"sideEffects": false,
"workspaces": [
"src/*"
],
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-class-properties": "^7.12.0",
"@babel/plugin-proposal-object-rest-spread": "^7.12.0",
"@babel/plugin-transform-react-jsx": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@babel/preset-typescript": "^7.12.0",
"@types/jasmine": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-loader": "^8.1.0",
"eslint": "^7.12.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-filenames": "^1.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.21.0",
"jasmine-core": "^3.6.0",
"karma": "^5.2.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.0.0",
"karma-jasmine": "^4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-webpack": "^4.0.0",
"webpack": "^4.44.0"
},
"scripts": {
"// DEV ////////////////////////////////////////////////////////////": "",
"analyze": "yarn workspace @age-online/app-gatsby analyze",
"develop": "yarn workspace @age-online/app-gatsby develop",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --max-warnings=0",
"serve": "yarn workspace @age-online/app-gatsby serve",
"test:watch": "karma start src/karma.conf.js",
"write-git-info": "yarn workspace @age-online/lib-core write-git-info",
"doctor": "npx @yarnpkg/doctor",
"// DEV NEXT.JS ////////////////////////////////////////////////////": "",
"analyze:next": "yarn workspace @age-online/app-next analyze",
"develop:next": "yarn workspace @age-online/app-next develop",
"serve:next": "yarn workspace @age-online/app-next serve",
"// CI /////////////////////////////////////////////////////////////": "",
"ci:build": "yarn workspace @age-online/lib-core build && yarn workspace @age-online/lib-react build && yarn workspace @age-online/lib-react-emulator build && yarn workspace @age-online/lib-react-pages build && yarn workspace @age-online/app-common build && yarn workspace @age-online/app-gatsby build",
"ci:test": "karma start src/karma.conf.js --single-run"
}
}