waforth/package.json

27 lines
631 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",
"dependencies": {},
2018-05-12 21:09:19 +02:00
"devDependencies": {
2022-04-13 17:02:46 +02:00
"chai": "^4.3.6",
"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",
2022-04-14 08:53:53 +02:00
"test": "./test.js",
"test-watch": "./test.js --watch",
2022-04-13 17:02:46 +02:00
"lint": "eslint ."
2018-05-12 21:09:19 +02:00
}
}