-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.29 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.29 KB
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
57
58
59
60
61
62
63
64
65
66
{
"version": "0.0.0",
"author": "Danyil Moroz",
"license": "MIT",
"scripts": {
"lint:demo": "cd demo && npm run lint",
"lint:core": "cd packages/jss-theme && npm run lint",
"lint:angular": "cd packages/jss-theme-angular && npm run lint",
"lint:default": "cd packages/jss-theme-default && npm run lint",
"lint": "npm run lint:core && npm run lint:angular && npm run lint:default",
"clean": "rm -rf lib dist",
"dev:demo": "cd demo && npm run dev",
"dev:core": "cd packages/jss-theme && nodemon --config ../../nodemon.json",
"dev:angular": "cd packages/jss-theme-angular && nodemon --config ../../nodemon.json",
"dev:default": "cd packages/jss-theme-default && nodemon --config ../../nodemon.json",
"dev": "concurrently --kill-others-on-fail \"npm run dev:core\" \"npm run dev:angular\" \"npm run dev:default\"",
"version:demo": "cd demo && ./node_modules/.bin/ts-node ../../scripts/version.ts",
"version:core": "cd packages/jss-theme && ./node_modules/.bin/ts-node ../../scripts/version.ts",
"version:angular": "cd packages/jss-theme-angular && ./node_modules/.bin/ts-node ../../scripts/version.ts",
"version:default": "cd packages/jss-theme-default && ./node_modules/.bin/ts-node ../../scripts/version.ts",
"version": "npm run version:core && npm run version:angular && npm run version:default",
"bundle": "./node_modules/.bin/ts-node scripts/generate-bundle.ts",
"build:demo": "cd demo && npm run build",
"build:core": "cd packages/jss-theme && npm run build",
"build:angular": "cd packages/jss-theme-angular && npm run build --dev",
"build:default": "cd packages/jss-theme-default && npm run build",
"build": "npm run build:core && npm run build:angular && npm run build:default && npm run bundle",
"drp:demo": "cd demo && ng deploy --dry-run --base-href=\"https://mopcweb.github.io/jss-theme/\"",
"drp:core": "cd packages/jss-theme && npm publish --dry-run",
"drp:angular": "cd packages/jss-theme-angular && npm publish --dry-run",
"drp:default": "cd packages/jss-theme-default && npm publish --dry-run",
"drp": "npm run drp:core && npm run drp:angular && npm run drp:default",
"release:demo": "cd demo && npm run deploy",
"release:core": "cd packages/jss-theme && npm publish",
"release:angular": "cd packages/jss-theme-angular && npm publish",
"release:default": "cd packages/jss-theme-default && npm publish",
"release": "npm run release:core && npm run release:angular && npm run release:default"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/node": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"concurrently": "^5.1.0",
"dts-bundle-generator": "^3.3.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-json": "^2.1.0",
"eslint-plugin-prettier": "^3.1.2",
"jss": "^10.0.4",
"jss-preset-default": "^10.0.4",
"nodemon": "^2.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslib": "^1.11.0",
"typescript": "^3.8.2",
"typescript-eslint": "0.0.1-alpha.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}