-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 892 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 892 Bytes
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
{
"name": "resources",
"version": "1.0.1",
"description": "Back-end resources",
"scripts": {
"watch": "babel --watch=src/main/resources --out-dir=build/resources/main --ignore \"**/*.js\"",
"build": "npm-run-all build:*",
"build:js": "babel src/main/resources --out-dir=build/resources/main --ignore \"**/*.js\""
},
"author": "Bouvet",
"license": "UNLICENSED",
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.3",
"@babel/eslint-parser": "7.25.1",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"npm-run-all": "4.1.5"
}
}