-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.94 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.94 KB
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
{
"name": "react-select-element-io",
"version": "1.2.407",
"description": "React Select Element",
"private": true,
"main": "./app.mjs",
"type": "module",
"author": {
"name": "Jonathan Perry for Sequence Media Limited",
"email": "sequencemedia@sequencemedia.net",
"url": "https://sequencemedia.net"
},
"license": "UNLICENSED",
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production",
"build:dev": "cross-env NODE_ENV=development webpack --mode development",
"lint": "eslint . --ext .mjs,.cjs,.jsx",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"start": "cross-env NODE_ENV=production node .",
"start:dev": "cross-env NODE_ENV=development node ."
},
"dependencies": {
"@hapi/hapi": "^21.4.4",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.3",
"@sequencemedia/react-render": "^2.4.147",
"cross-env": "^10.1.0",
"debug": "^4.4.3",
"handlebars": "^4.7.8",
"joi": "^18.0.2",
"module-alias": "^2.2.3",
"nconf": "^0.13.0",
"prop-types": "15.7.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-select-element": "2.9.34"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/register": "^7.28.3",
"babel-loader": "^10.0.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.47.0",
"eslint": "8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"terser-webpack-plugin": "^5.3.16",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"imports": {
"#client/components/*": "./client/components/*/index.jsx",
"#client/router": "./client/router/index.jsx",
"#client/routes": "./client/routes/index.jsx"
}
}