-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.71 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
{
"name": "nebenan-form",
"description": "React form components",
"author": "Good Hood GmbH <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/goodhood-eu/nebenan-form#readme",
"repository": "github:goodhood-eu/nebenan-form",
"bugs": "https://github.com/goodhood-eu/nebenan-form/issues",
"version": "13.1.0",
"files": [
"lib/*.js",
"lib/**/*.js",
"src/*.scss",
"src/**/*.scss",
"index.scss",
"style.css"
],
"scripts": {
"reinstall": "rm -rf node_modules package-lock.json && npm install --legacy-peer-deps && npm run decache",
"decache": "find ./build -type f -name '.browserify-cache.json' -delete || echo \"\\033[0;32mAlready decached!\\033[0m\"",
"check": "npm run test && npm run lint && echo \"\\033[0;32mReady to publish\\033[0m\"",
"gulp": "gulp",
"build": "NODE_ENV=production npm run gulp compile",
"prepublishOnly": "npm run check && npm run build",
"lint": "npm run lint:javascript && npm run lint:styles",
"lint:fix": "npm run lint:javascript -- --fix && npm run lint:styles -- --fix",
"lint:tofile": "npm run lint:javascript -- -o ./eslint-report.log && npm run lint:styles -- -o ./stylelint-report.log",
"lint:javascript": "eslint -f stylish \"./**/*.{js,jsx,ts,tsx}\"",
"lint:styles": "stylelint \"./**/*.scss\" ",
"test": "npm run build && TZ='GMT' mocha \"test/**/*.js\"",
"test:tofile": "NODE_ENV=production npm run gulp compile && TZ='GMT' mocha --no-colors -R spec \"test/**/*.js\" 2>&1 | tee test-report.log",
"start": "npm run gulp"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/plugin-transform-strict-mode": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/register": "^7.24.6",
"@babel/runtime": "^7.25.0",
"autoprefixer": "^10.4.20",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-node-env-inline": "0.4.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"browserify-incremental": "^3.1.1",
"browserslist-config-nebenan": "^1.0.2",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.2",
"date-fns": "^3.6.0",
"del": "^6.0.0",
"errorhandler": "^1.5.1",
"eslint": "^8.56.0",
"eslint-config-nebenan": "^4.4.1",
"express": "^4.19.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"jsdom": "^24.1.1",
"mocha": "^10.7.3",
"morgan": "^1.10.0",
"node-sass-glob-importer": "^5.3.3",
"nodemon": "^3.1.4",
"postcss": "^8.4.41",
"postcss-flexbugs-fixes": "^5.0.2",
"prop-types": "^15.8.1",
"qs": "^6.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"sass": "1.77.6",
"sass-functions": "^2.0.2",
"serve-static": "^1.15.0",
"sinon": "^18.0.0",
"stylelint": "^15.11.0",
"stylelint-config-nebenan": "^3.0.1",
"tiny-lr": "^2.0.0",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"@frsource/autoresize-textarea": "^2.0.90",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"nebenan-helpers": "^8.0.0",
"nebenan-ui-kit": "^7.0.0",
"string-validate": "^3.9.1"
},
"peerDependencies": {
"@babel/runtime": "^7.12.5",
"nebenan-eventproxy": "^1.0.0",
"nebenan-keymanager": "^1.0.1",
"nebenan-ui-kit": "^7.0.0",
"prop-types": "^15.7.2",
"react": ">= 16.14.0",
"react-dom": ">= 16.14.0",
"sass": "^1.34.1",
"sass-functions": "^2.0.0 || ^1.4.0"
}
}