-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-figma-primitives",
"description": "React primitives for rapid prototyping and data-driven design synced with Figma API via GraphQL",
"version": "0.0.0-development",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/component-driven/react-figma-primitives.git"
},
"keywords": [],
"author": "Andrey Okonetchnikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/component-driven/react-figma-primitives/issues"
},
"homepage": "https://github.com/component-driven/react-figma-primitives#readme",
"scripts": {
"prepublish": "npm run build",
"build": "microbundle --jsx react",
"dev": "microbundle watch --jsx react --no-compress --format es,cjs",
"lint": "eslint . --cache --fix",
"format": "prettier --write \"**/*.{js,css,md}\"",
"gql:schema": "API_HOST=http://localhost:3001 node ./scripts/generate-introspection-json.js"
},
"dependencies": {
"apollo-cache-inmemory": "^1.5.1",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-http": "^1.5.14",
"apollo-link-ws": "^1.0.17",
"apollo-utilities": "^1.2.1",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.11",
"node-fetch": "^2.3.0",
"polished": "^3.0.3",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-apollo": "^2.5.2",
"react-dom": "^16.8.4",
"react-google-font-loader": "^1.0.5",
"subscriptions-transport-ws": "^0.9.16"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.8.8",
"eslint": "^5.15.3",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"microbundle": "^0.11.0",
"prettier": "^1.16.4",
"typescript": "^3.3.4000"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,css,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}