-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.29 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
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
{
"name": "keybuddy",
"version": "0.4.0",
"main": "index.js",
"license": "MIT",
"author": {
"email": "elvin.d@outlook.com",
"name": "Elvin Dzhavadov"
},
"repository": "https://github.com/elv1n/keybuddy",
"scripts": {
"start": "cross-env NODE_ENV=development babel src --out-dir dist --extensions \".ts,.tsx\" --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"build": "rimraf ./dist && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "cross-env NODE_ENV=development babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"preversion": "yarn build",
"browse": "watchify -r ./dist/index.js:keybuddy -o public/bundle.js",
"ws": "ws --spa index.html -d public",
"e2e": "cypress open",
"test": "yarn jest && yarn cypress run --browser chrome --headless",
"postversion": "node ./scripts/clone-pkg.js",
"release": "np --contents dist"
},
"dependencies": {
"debug": "^4.1.1",
"invariant": "^2.2.4"
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.7",
"@babel/preset-env": "7.7.7",
"@babel/preset-typescript": "7.7.7",
"@cypress/webpack-preprocessor": "4.1.1",
"@types/debug": "^4.1.5",
"@types/invariant": "2.2.31",
"@types/jest": "24.0.25",
"@types/node": "13.1.2",
"babel-eslint": "10.0.3",
"babel-loader": "^8.0.6",
"browserify": "^16.5.0",
"build-react-library": "0.3.1",
"clientside-require": "^4.7.2",
"cross-env": "6.0.3",
"cypress": "3.8.1",
"eslint-config-elv1n-react": "0.4.0",
"fs-extra": "8.1.0",
"jest": "^24.9.0",
"local-web-server": "^3.0.7",
"rimraf": "3.0.0",
"typescript": "3.7.4",
"watchify": "^3.11.1",
"webpack": "4.41.5"
},
"eslintConfig": {
"extends": [
"elv1n-react"
],
"rules": {
"@typescript-eslint/interface-name-prefix": [
"error",
"never"
],
"no-restricted-syntax": "off"
},
"env": {
"browser": true
},
"globals": {
"cy": true,
"Cypress": true
}
},
"nyc": {
"extension": [
".ts"
]
}
}