This repository has been archived by the owner on Nov 4, 2022. It is now read-only.
generated from js-widgets/example-widget
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.46 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
{
"name": "@js-widgets/example-calculator",
"private": false,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"big.js": "^5.2.2",
"postcss-wrap": "^0.0.4",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"scripts": {
"start": "craco start",
"build": "craco build && rimraf ./build/static",
"build:locales": "formatjs extract './src/messages.js' --messages-dir './messages' && node './src/core/scripts/build-locales.js' && rm -rvf './messages'",
"build:gh-pages": "npm run build && gh-pages -d build",
"test": "craco test",
"test:ci": "craco test --watchAll=false",
"lint:fix": "eslint --fix . && prettier --write .",
"lint": "eslint . && prettier --check .",
"use-typescript": "node src/core/scripts/use-typescript.js"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@craco/craco": "^6.0.0",
"@formatjs/cli": "^1.7.5",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"chai": "^4.2.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"gh-pages": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.10",
"prettier": "^2.2.1",
"react-scripts": "^4.0.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.8",
"webpack": "^4.44.2"
},
"version": "1.0.1"
}