-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 3.59 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
{
"name": "@uncharted.software/lex",
"description": "A preact micro-framework for building token-based search bars",
"version": "1.0.2",
"author": {
"name": "Sean McIntyre",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/unchartedsoftware/lex.git"
},
"license": "Apache-2.0",
"scripts": {
"start": "npm run serve",
"demo": "npm run serve-demos",
"clean": "rimraf dist/",
"build": "npm-run-all clean lint webpack:*",
"webpack:js": "cross-env MINIFY=true webpack --config config/webpack.config.build.js",
"webpack:jsmin": "webpack --config config/webpack.config.build.js",
"webpack:scss": "mkdirp dist/ && cp -R src/style/* dist/",
"serve": "cross-env DEV_ONLY=true webpack-dev-server --config config/webpack.config.watch.js --open",
"serve-demos": "cross-env DEV_ONLY=false webpack-dev-server --config config/webpack.config.watch.js --open",
"lint": "eslint ./src",
"prepublishOnly": "npm run build",
"pages": "run-s pages:*",
"pages:build": "cross-env DEV_ONLY=false webpack --config config/webpack.config.demo.js",
"pages:docs": "npm run docs",
"pages:copy": "run-p pages:copy:*",
"pages:copy:demos": "copyfiles -f demo/dist/* demo/public/* pages/demo",
"pages:copy:docs": "copyfiles -u 1 docs/**/* docs/* pages",
"docs": "documentation build --config documentation.yml src/lex.jsx -f html -o docs",
"serve-docs": "documentation serve --config documentation.yml --watch src/lex.jsx",
"test:e2e": "npx playwright test",
"test:init": "npx playwright install"
},
"main": "dist/lex.js",
"style": "dist/lex.css",
"module": "src/lex.jsx",
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.7.0",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-transform-react-jsx": "7.7.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.7.1",
"@babel/runtime": "7.7.2",
"@playwright/test": "1.24.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"babel-plugin-preact-require": "1.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"bootstrap-sass": "3.4.1",
"clean-webpack-plugin": "3.0.0",
"copyfiles": "^2.4.1",
"cross-env": "6.0.3",
"css-loader": "3.2.0",
"documentation": "12.1.3",
"element-resize-detector": "1.1.15",
"eslint": "^6.6.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-loader": "3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "17.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "4.0.1",
"file-loader": "4.2.0",
"flatpickr": "4.6.3",
"if-env": "1.0.4",
"mini-css-extract-plugin": "0.8.0",
"mkdirp": "0.5.1",
"moment-timezone": "0.5.34",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"preact": "8.5.2",
"preact-portal": "1.1.3",
"rimraf": "3.0.0",
"sass-loader": "8.0.0",
"style-loader": "1.0.0",
"uglifyjs-webpack-plugin": "2.2.0",
"url-loader": "2.2.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0",
"wolfy87-eventemitter": "5.2.8"
},
"peerDependencies": {
"element-resize-detector": "1.1.x",
"flatpickr": "4.6.x",
"moment-timezone": "0.5.x",
"preact": "8.x"
},
"dependencies": {
"lodash": "4.17.21",
"lodash-decorators": "5.0.0"
}
}