-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "react-flight",
"version": "1.0.2",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build:lib": "babel src --out-dir . && rm -rf __tests__",
"build:umd:min": "cross-env NODE_ENV=production webpack --display-modules",
"build:umd": "cross-env NODE_ENV=development webpack --display-modules",
"build": "yarn build:lib && yarn build:umd && yarn build:umd:min",
"release": "yarn juild && yarn publish",
"test": "jest",
"watch": "jest --watch"
},
"dependencies": {
"lodash": "^4.17.2",
"prop-types": "^15.5.10",
"tweene": "^0.5.11",
"velocity-animate": "^1.5.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-jest": "^17.0.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "~5.0.1",
"enzyme": "^2.8.2",
"jest": "^18.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"webpack": "^1.13.3"
}
}