-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 995 Bytes
/
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
{
"private": true,
"workspaces": [
"docs",
"react-motions"
],
"scripts": {
"build": "cd react-motions && yarn build",
"build-docs": "cd docs && yarn build",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "22.4.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"fast-memoize": "^2.3.0",
"jest": "22.4.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-motions": "0.3.2",
"react-select": "^1.2.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.0"
},
"jest": {
"roots": [
"<rootDir>/react-motions"
],
"setupFiles": [
"./test/setup.js"
],
"moduleDirectories": [
"node_modules"
],
"verbose": true,
"resetModules": true
}
}