-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.5 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
{
"name": "mashvp-forms",
"version": "0.4.0",
"description": "No-bullsh!t form plugin",
"main": "js/index.js",
"author": "Mashvp",
"license": "MIT",
"scripts": {
"sass-admin": "sass --load-path ./node_modules --style compressed styles/admin.scss dist/admin.css",
"watch-sass-admin": "sass --watch --load-path ./node_modules --style expanded --source-map styles/admin.scss dist/admin.css",
"sass-front": "sass --load-path ./node_modules --style compressed styles/front.scss dist/front.css",
"watch-sass-front": "sass --watch --load-path ./node_modules --style expanded --source-map styles/front.scss dist/front.css",
"sass": "concurrently 'npm:sass-admin' 'npm:sass-front'",
"watch-sass": "concurrently 'npm:watch-sass-admin' 'npm:watch-sass-front'",
"js": "rm -f js/chunks/* && webpack --mode production",
"watch-js": "rm -f js/chunks/* && webpack --watch --mode development",
"watch": "concurrently 'npm:watch-sass' 'npm:watch-js'",
"build": "concurrently 'npm:sass' 'npm:js'",
"tr": "po2json languages/mashvp-forms-fr_FR.po languages/mashvp-forms-fr_FR-mashvp-forms--admin-script.json -d mashvp-forms -f jed1.x",
"test": "jest"
},
"jest": {
"testRegex": [
"js/tests/.*-test\\.js"
],
"setupFiles": [
"./js/tests/setup.js"
],
"roots": [
"js/tests"
],
"moduleDirectories": [
"node_modules",
"js/controllers"
]
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"mutationobserver-shim": "^0.3.7",
"po2json": "^0.4.5",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@hotwired/stimulus": "^3.0.1",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"classnames": "^2.2.6",
"lodash.camelcase": "^4.3.0",
"lodash.clonedeep": "^4.5.0",
"lodash.escape": "^4.0.1",
"lodash.isplainobject": "^4.0.6",
"prop-types": "^15.7.2",
"pubsub-js": "^1.9.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-smooth-dnd": "^0.11.1",
"styled-components": "^5.3.5",
"uuid": "^8.3.1"
}
}