forked from seek-oss/playroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "playroom",
"version": "0.0.0-semantically-released",
"description": "Design with code, powered by your own component library",
"main": "index.js",
"bin": {
"playroom": "bin/cli.js"
},
"scripts": {
"test": "npm run lint && npm run jest && npm run cypress",
"cypress": "start-server-and-test cypress:prepare http://localhost:9000 cypress:run",
"cypress:dev": "start-server-and-test cypress:prepare http://localhost:9000 cypress:open",
"cypress:prepare": "./bin/cli.js start --config cypress/projects/basic/playroom.config.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"commit": "git-cz",
"lint": "eslint . && prettier --list-different '**/*.{js,md,less,ts,tsx}'",
"format": "prettier --write '**/*.{js,md,less,ts,tsx}'",
"semantic-release": "semantic-release",
"jest": "jest src"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit --extends seek",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js}": [
"npm run lint",
"git add"
],
"**/*.{js,md,less}": [
"npm run format",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"success": false
},
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/playroom.git"
},
"author": "SEEK",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/playroom/issues"
},
"homepage": "https://github.com/seek-oss/playroom#readme",
"dependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"base64-url": "^2.2.0",
"buble": "^0.19.3",
"codemirror": "^5.42.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"css-loader": "^1.0.0",
"current-git-branch": "^1.1.0",
"dedent": "^0.7.0",
"fast-glob": "^2.2.4",
"find-up": "^3.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.0.0-beta.5",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"localforage": "^1.7.2",
"lodash": "^4.17.11",
"mini-css-extract-plugin": "^0.4.3",
"opn": "^5.4.0",
"parse-prop-types": "^0.3.0",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"query-string": "^6.1.0",
"re-resizable": "^4.9.3",
"react": "^16.8.6",
"react-codemirror": "^1.0.0",
"react-docgen-typescript": "^1.12.2",
"react-dom": "^16.8.6",
"read-pkg-up": "^5.0.0",
"scope-eval": "^1.0.0",
"style-loader": "^0.23.0",
"url-join": "^4.0.0",
"webpack": "^4.19.1",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6.0",
"commitizen": "^3.0.4",
"commitlint-config-seek": "^1.0.0",
"cypress": "^3.1.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.8.0",
"eslint-config-seek": "^3.2.1",
"eslint-plugin-cypress": "^2.1.2",
"extract-text-webpack-plugin": "^3.0.2",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"semantic-release": "^15.10.8",
"start-server-and-test": "^1.7.11"
}
}