-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.61 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
49
50
51
52
53
54
55
{
"name": "@oursky/react-messageformat",
"version": "2.0.2",
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.module.js",
"scripts": {
"prepare": "npm run typecheck && npm run format && npm run test && npm run build",
"format": "prettier --write --list-different '*.config.js' 'src/**/*.{js,jsx,ts,tsx}'",
"prebuild": "rm -rf ./dist",
"build": "rollup -c",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"files": [
"dist",
"index.d.ts"
],
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-transform-modules-commonjs": "7.14.5",
"@babel/plugin-transform-react-jsx": "7.14.5",
"@babel/plugin-transform-typescript": "7.14.6",
"@babel/preset-env": "7.14.7",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "19.0.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.2",
"@types/jest": "26.0.24",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.10",
"@types/react-is": "17.0.2",
"@types/react-test-renderer": "17.0.1",
"babel-jest": "27.0.6",
"jest": "27.0.6",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"react-test-renderer": "17.0.2",
"rollup": "2.53.2",
"typescript": "4.3.5"
},
"dependencies": {
"@louischan-oursky/messageformat-parser": "0.3.0",
"entities": "3.0.1",
"make-plural": "6.2.2"
},
"peerDependencies": {
"react": "^16.3.0 || ^17",
"react-dom": "^16.3.0 || ^17"
}
}