-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.79 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
{
"name": "animate-components-packages",
"version": "0.0.2",
"description": "Contains packages for animate-components",
"keywords": [
"react",
"keyframes",
"animate",
"high order component",
"composed components",
"animations",
"styled",
"renderer",
"block",
"renderer",
"styled",
"custom elements"
],
"main": "index.js",
"scripts": {
"postinstall": "lerna bootstrap --concurrency=1",
"start:react": "cd packages/animate-components && yarn start",
"start:inferno": "cd packages/ac-inferno && yarn start",
"lint": "cd packages/animate-components && yarn lint",
"test": "cd packages/animate-components && yarn test",
"build:react": "cd packages/animate-components && yarn webpack:build",
"build:inferno": "cd packages/ac-inferno && yarn webpack",
"server": "./node_modules/.bin/webpack-dev-server --config ./starter/webpack.config.js"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-babili": "^0.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"html-webpack-plugin": "^2.28.0",
"html-webpack-template": "^6.0.1",
"lerna": "2.0.0-rc.5",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"animate-keyframes": "^0.1.3",
"glamorous-native": "^1.1.0",
"html-tags": "^2.0.0",
"inferno": "^3.6.1",
"inferno-component": "^3.6.1"
},
"peerDependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-primitives": "^0.4.3"
}
}