-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.67 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
46
47
48
{
"name": "modulik",
"private": "true",
"workspaces": [
"modulik"
],
"scripts": {
"build": "rimraf modulik/lib && rollup -c",
"build:watch": "rimraf modulik/lib && rollup -c --watch",
"test": "run-s test:*",
"test:main": "[ \"$CI\" = true ] && yarn --cwd test/main start || mocha test/main/*.spec.js",
"test:transpilation": "yarn --cwd test/transpilation start",
"lint": "run-s lint:*",
"lint:modulik": "eslint modulik/src",
"lint:test": "eslint test/*/resources/**/* test/*/*.spec.js test/*/modulik.js",
"postinstall": "[ \"$CI\" != true ] && yarn --cwd test/main install && yarn --cwd test/transpilation install || echo Skipping dependencies installation in tests projects"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/chokidar": "^2.1.3",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"fast-glob": "^3.2.11",
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^2.6.3",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
}
}