-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.34 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
{
"name": "@phun-ky/demo",
"version": "0.4.2",
"publishConfig": {
"access": "public"
},
"description": "A live demo of your html components",
"main": "./dist/demo.cjs.js",
"module": "./dist/demo.esm.js",
"browser": "./dist/demo.umd.js",
"scripts": {
"version": "npm run build",
"build": "rm -rf dist/ && rollup -c && gulp",
"dev": "node ./scripts/watcher.js",
"test": "npm run build && jest --config jest.config.js",
"coverage": "npm run build && jest --config jest.config.js --coverage",
"commit": "npx git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phun-ky/demo.git"
},
"author": "Alexander Vassbotn Røyne-Helgesen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/phun-ky/demo/issues"
},
"homepage": "https://github.com/phun-ky/demo#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.12.13",
"@babel/runtime": "^7.12.18",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/user-event": "^12.7.1",
"async": "^3.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"body-parser": "^1.19.0",
"core-js": "^3.9.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"gulp": "^4.0.0",
"gulp-banner": "^0.1.3",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-stylus": "^2.7.0",
"jest": "^26.6.3",
"node-watch": "^0.7.1",
"open": "^8.0.3",
"prettier": "^2.0.5",
"prettier-eslint": "^9.0.1",
"regenerator-runtime": "^0.13.7",
"reload": "^3.1.1",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2"
}
}