-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.87 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
83
84
85
86
87
88
89
90
91
92
{
"name": "js-basics",
"version": "1.0.0",
"description": "everything about js",
"main": "index.js",
"scripts": {
"lerna": "lerna",
"postinstall": "lerna bootstrap",
"validate": "lerna run validate",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dontry/js-basics.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dontry/js-basics/issues"
},
"homepage": "https://github.com/dontry/js-basics#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.12",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"assert": "^1.4.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-emotion": "^10.0.9",
"create-jest-runner": "^0.5.0",
"css-loader": "^2.1.1",
"cypress": "^3.2.0",
"cypress-testing-library": "^2.3.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-jest": "^2.1.1",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^1.1.1",
"jest": "^24.8.0",
"jest-emotion": "^10.0.9",
"jest-runner-eslint": "^0.7.3",
"jest-watch-select-projects": "^0.1.1",
"jest-watch-typeahead": "^0.2.1",
"jest-worker": "^24.4.0",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"react-testing-library": "^6.0.0",
"start-server-and-test": "^1.7.12",
"style-loader": "^0.23.1",
"test-data-bot": "^0.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1",
"webpack-serve": "^3.0.0-beta.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"basics": "file:packages\\node-basics",
"design-pattern": "file:packages\\design-pattern",
"functional_programming": "file:packages\\functional_programming",
"rx-js": "file:packages\\rx-js",
"testing": "file:packages\\testing",
"ts": "file:packages\\ts",
"webpack-tutorial": "file:packages\\webpack"
}
}