generated from react-figma/react-figma-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.48 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.48 KB
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": "react-primitives-box",
"version": "0.0.1",
"description": "React Primitives implementation of Reflexbox",
"scripts": {
"tsc": "tsc -p tsconfig.json --noEmit",
"test": "jest",
"prettify": "prettier \"src/**/*.{js,jsx,ts,tsx}\" \"examples/**/*.{js,jsx,ts,tsx}\" --ignore-path ./.prettierignore --write",
"prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\" \"examples/**/*.{js,jsx,ts,tsx}\"",
"build": "npm run build:clean && npm run build:lib",
"build:clean": "rimraf dist",
"build:lib": "cross-env BABEL_ENV=production tsc -p tsconfig.json"
},
"jest": {
"preset": "ts-jest/presets/js-with-babel"
},
"repository": "git@github.com:react-figma/reflexbox.git",
"author": "Ilia Lesik <ilialesik@gmail.com>",
"license": "MIT",
"pre-commit": [
"prettify"
],
"dependencies": {
"@styled-system/css": "^5.1.5",
"@styled-system/should-forward-prop": "^5.1.5",
"react-primitives": "^0.8.1",
"styled-components": "^5.2.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"jest": "^26.4.2",
"jest-styled-components": "^7.0.3",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-figma": "^0.1.14",
"react-native-web": "^0.13.14",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.2"
}
}