-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.87 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
82
83
84
85
86
87
88
89
{
"private": true,
"name": "popmotion-packages",
"author": "Matt Perry",
"homepage": "https://popmotion.io",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "cd packages/easing && yarn build && cd ../style-value-types && yarn build && cd ../framesync && yarn build && cd ../popcorn && yarn build && cd ../stylefire && yarn build && cd ../popmotion && yarn build && cd ../pose-core && yarn build && cd ../animated-pose && yarn build && cd ../react-pose-core && yarn build && cd ../react-native-pose && yarn build && cd ../popmotion-pose && yarn build && cd ../react-pose && yarn build && yarn build && cd ../react-pose-text && yarn build",
"playground": "start-storybook -p 6006",
"build-playground": "build-storybook",
"clean": "lerna clean --yes && rm -rf node_modules",
"clear": "yarn clean && rm yarn.lock",
"test": "lerna run test"
},
"devDependencies": {
"@storybook/react": "^3.2.13",
"@types/jest": "^23.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^5.0.4",
"babel-loader": "^6.0.1",
"babel-plugin-annotate-pure-calls": "^0.2.2",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-export-extensions": "^6.4.0",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.2.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.17.0",
"babel-register": "^6.3.13",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jasmine": "2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"estraverse-fb": "^1.3.1",
"husky": "^1.1.2",
"jest": "24.2.0-alpha.0",
"jest-cli": "^24.2.0-alpha.0",
"lerna": "^3.0.6",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rollup": "^0.59.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^3.0.0",
"string-replace-loader": "^1.3.0",
"styled-components": "^4.1.1",
"ts-jest": "^22.4.6",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"webpack": "^3.0.0"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"gatsby"
]
},
"resolutions": {
"jest": "^23.1.0",
"babel-jest": "^22.4.3"
},
"prettier": {
"parser": "typescript",
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
}
}