This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
119 lines (119 loc) · 4.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
116
117
118
119
{
"name": "wp-gistpen",
"description": "A self-hosted alternative to putting your code snippets on Gist.",
"author": {
"name": "James DiGioia",
"email": "jamesorodig@gmail.com",
"twitter": "@JamesDiGioia"
},
"homepage": "http://www.jamesdigioia.com/wp-gistpen/",
"license": "GPL-2.0+",
"scripts": {
"test": "npm run test:typecheck && npm run test:check && npm run test:lint && npm run test:unit",
"test:typecheck": "tsc --noEmit",
"test:check": "beaver test check",
"test:lint": "beaver test lint",
"test:unit": "beaver test unit",
"build": "npm run build:dev && npm run build:prod",
"build:dev": "beaver build --env development",
"build:prod": "beaver build --env production",
"dev:app": "beaver build --env development --watch",
"dev:tdd": "beaver test unit --watch",
"dev:storybook": "start-storybook -s ./resources/assets -p 9001 -c .storybook",
"dev:format": "beaver format",
"env": "wp-env",
"env:php:format": "npm run env run tests-cli composer dev:format",
"env:php:test": "npm run env run tests-cli composer test",
"env:php:test:lint": "npm run env run tests-cli composer test:lint",
"env:php:test:unit": "npm run env run tests-cli composer test:unit",
"gen": "npm run gen:coc && npm run gen:pot",
"gen:coc": "weallbehave -o .",
"gen:pot": "wp-pot --bug-report http://github.com/intraxia/wp-gistpen --domain wp-gistpen --package wp-gistpen --src 'app/**/*.php' --relative-to . --dest-file languages/wp-gistpen.pot"
},
"devDependencies": {
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-storyshots": "^5.3.19",
"@storybook/react": "^5.3.19",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.9",
"@types/classnames": "^2.2.9",
"@types/clipboard": "^2.0.1",
"@types/eslint": "^6.8.1",
"@types/expect-puppeteer": "^4.4.3",
"@types/jest-environment-puppeteer": "^4.3.2",
"@types/jest-image-snapshot": "^3.1.0",
"@types/kefir": "^3.8.4",
"@types/lolex": "^5.1.0",
"@types/nise": "^1.4.0",
"@types/node": "^13.1.8",
"@types/prismjs": "^1.16.1",
"@types/puppeteer": "^3.0.1",
"@types/react": "^16.9.45",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/recompose": "^0.30.7",
"@types/sinon": "^9.0.4",
"@types/sprintf-js": "^1.1.2",
"@types/webpack": "^4.41.13",
"@types/webpack-dev-server": "^3.11.0",
"@types/webpack-env": "^1.15.2",
"@types/wordpress__block-editor": "^2.2.8",
"@types/wordpress__blocks": "^6.4.9",
"@types/wordpress__components": "^8.5.3",
"@types/wordpress__compose": "^3.4.2",
"@types/wordpress__element": "^2.4.0",
"@types/wordpress__i18n": "^3.11.0",
"@wordpress/block-editor": "^4.3.5",
"@wordpress/components": "^9.6.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.8.0",
"@wordpress/e2e-test-utils": "^4.16.0",
"@wordpress/env": "^3.0.0",
"babel-plugin-prismjs": "^2.0.1",
"brookjs-cli": "1.0.0-beta.19",
"brookjs-desalinate": "1.0.0-beta.17",
"copy-webpack-plugin": "^5.1.1",
"execa": "^4.0.3",
"expect-puppeteer": "^4.4.0",
"ink": "^2.7.1",
"jest-image-snapshot": "^4.1.0",
"jest-puppeteer": "^4.4.0",
"nise": "^4.0.3",
"node-sass": "^4.14.1",
"pptr-testing-library": "^0.6.0",
"puppeteer": "^4.0.0",
"react-dev-utils": "^10.0.0",
"react-testing-kit": "^1.1.1",
"sass-loader": "^9.0.3",
"sinon": "^9.1.0",
"style-loader": "^1.2.1",
"stylelint": "^13.5.0",
"stylelint-webpack-plugin": "^2.0.0",
"symbol-observable": "^1.2.0",
"typescript": "^3.8.3",
"weallbehave": "^1.2.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-notifier": "^1.8.0",
"wp-pot-cli": "^1.5.0"
},
"dependencies": {
"brookjs": "1.0.0-beta.17",
"classnames": "^2.2.5",
"clipboard": "^2.0.4",
"io-ts": "^1.10.4",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"kefir": "^3.8.7",
"kefir-ajax": "^1.0.2",
"prism-themes": "^1.1.0",
"prismjs": "1.23.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"sheet-router": "^4.0.0-0",
"sprintf-js": "^1.1.2",
"typesafe-actions": "^4.4.2",
"typescript-nullable": "^0.6.0"
}
}