-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "portugolweb",
"version": "1.0.0",
"description": "Portugol Web",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "npx eslint ./",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
"build": "webpack --config ./webpack.config.cjs",
"buildace": "webpack --config ./ace-webpack.config.cjs",
"buildversion": "node src-dev/version.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erickweil/portugolweb.git"
},
"author": "Erick Leonardo Weil",
"license": "GPL-3",
"bugs": {
"url": "https://github.com/erickweil/portugolweb/issues"
},
"homepage": "https://github.com/erickweil/portugolweb#readme",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@types/ace": "^0.0.48",
"@webpack-cli/generators": "^3.0.1",
"ace-builds": "^1.14.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"glob": "^8.1.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.3",
"node-fetch": "^3.3.1",
"prettier": "^2.8.4",
"style-loader": "^3.3.1",
"webpack": "^5.76.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1"
}
}