waforth/package.json

34 lines
854 B
JSON
Raw Normal View History

2018-05-12 21:09:19 +02:00
{
"private": true,
2018-07-31 09:17:08 +02:00
"license": "MIT",
2018-05-13 17:07:54 +02:00
"dependencies": {
"jq-console": "^2.13.2",
2022-04-13 22:23:30 +02:00
"jquery": "^3.5.0"
2018-05-13 17:07:54 +02:00
},
2018-05-12 21:09:19 +02:00
"devDependencies": {
2022-04-13 17:02:46 +02:00
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"chai": "^4.3.6",
"commander": "^9.1.0",
"esbuild": "^0.14.36",
"eslint": "^8.13.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
2022-04-13 17:02:46 +02:00
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
2019-03-10 10:37:01 +01:00
},
"scripts": {
2022-04-13 17:02:46 +02:00
"build": "./build.js",
"dev": "./build.js --watch --development",
"test": "mocha src/tests/tests.node.js",
"test-watch": "mocha --watch src/tests/tests.node.js",
"lint": "eslint ."
2018-05-12 21:09:19 +02:00
}
}