forked from esmnext/esmx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.88 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "genesis",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node genesis.dev -p=tsconfig.json",
"dev:test": "jest --watchAll --coverage",
"build": "rm -rf dist && NODE_ENV=production ts-node genesis.build -p=tsconfig.json",
"build:ts": "./build-ts.sh",
"start": "NODE_ENV=production ts-node genesis.prod -p=tsconfig.json",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "fm-eslint . --ext .js,.ts,.vue --fix",
"lint:css": "fm-stylelint . --syntax less --fix --ignore-path ./.stylelintignore | fm-stylelint . --custom-syntax postcss-html --fix",
"type-check": "tsc --noEmit",
"test": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info",
"lerna": "lerna publish --registry=https://registry.npmjs.org --force-publish --changelog-preset"
},
"sideEffects": [
"*.css",
"*.less",
"*.vue"
],
"types": "dist/index.d.ts",
"author": "Followme",
"license": "MIT",
"homepage": "https://fmfe.github.io/genesis-docs/",
"repository": {
"type": "git",
"url": "git+https://github.com/fmfe/genesis.git"
},
"bugs": {
"url": "https://github.com/fmfe/genesis/issues"
},
"devDependencies": {
"@fmfe/genesis-lint": "file:./packages/genesis-lint",
"@types/jest": "^25.1.4",
"coveralls": "^3.0.11",
"jest": "^25.2.4",
"sass": "^1.26.10",
"vue": "^2.6.11",
"vue-property-decorator": "^8.4.0",
"@types/memory-fs": "0.3.2",
"@types/node": "14.14.5",
"@types/webpack": "4.41.23",
"@types/postcss-preset-env": "6.7.3",
"@types/webpack-dev-middleware": "3.7.2",
"@types/webpack-hot-middleware": "2.25.3"
},
"dependencies": {
"@fmfe/genesis-app": "file:./packages/genesis-app",
"@fmfe/genesis-compiler": "file:./packages/genesis-compiler",
"@fmfe/genesis-core": "file:./packages/genesis-core",
"@fmfe/genesis-remote": "file:./packages/genesis-remote",
"@fmfe/square": "file:./packages/square",
"@types/ejs": "^3.0.3",
"@types/express": "^4.17.2",
"axios": "^0.19.2",
"express": "^4.17.1",
"tailwindcss": "^1.6.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.2",
"vue-router": "^3.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"fm-eslint --ext .js,.ts --fix",
"git add"
],
"*.{css,less}": [
"fm-stylelint --syntax less --fix",
"git add"
],
"*.{vue}": [
"fm-eslint --ext .js,.ts --fix",
"fm-stylelint --custom-syntax postcss-html --fix",
"git add"
]
}
}