-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.54 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
{
"name": "react-optimistic-toggle",
"version": "0.5.3",
"description": "React component to build Optimistic UIs.",
"main": "lib/OptimisticToggle.js",
"repository": "https://github.com/interviewstreet/react-optimistic-toggle.git",
"author": "itaditya <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"build": "babel src -d lib --ignore 'src/**/*.test.js'",
"docs": "styleguidist server",
"docs:dev": "nodemon -x 'npm run docs' --ignore src/ --ignore lib/",
"docs:build": "styleguidist build"
},
"peerDependencies": {
"react": "^0.14 || ^15.0.0 || ^ 16.0.0",
"react-dom": "^0.14 || ^15.0.0 || ^ 16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-flow-strip-types": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.7.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-styleguidist": "^9.1.16",
"synchronous-promise": "^2.0.7",
"webpack": "^4.41.2"
},
"dependencies": {
"@babel/runtime": "^7.7.0"
},
"jest": {
"setupFilesAfterEnv": [ "<rootDir>/jest.setup.js" ]
}
}