-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "react-tree-view",
"version": "1.0.0",
"description": "Front-end exercise using ReactJS",
"scripts": {
"start": "poi --serve",
"dev": "npm start",
"build": "poi --prod",
"lint": "eslint .",
"watch": "poi --watch",
"test": "export NODE_ENV=test && jest",
"test:watch": "npm run test -- --watch"
},
"keywords": [
"react",
"react-dom"
],
"engines": {
"node": "^10.0.0",
"npm": "^6.0.0"
},
"author": "jorge.meneses@prodigious.com",
"license": "MIT",
"dependencies": {
"classnames": "2.2.6",
"promise-polyfill": "8.1.0",
"prop-types": "15.7.2",
"raf": "3.4.1",
"react": "16.8.2",
"react-dom": "16.8.2",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@poi/plugin-eslint": "12.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-polyfill": "6.26.0",
"babel-preset-jest": "24.1.0",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.9.1",
"eslint": "5.14.0",
"eslint-plugin-react": "7.12.4",
"jest": "24.1.0",
"node-sass": "4.11.0",
"poi": "12.5.5",
"react-hot-loader": "4.6.5",
"react-test-renderer": "16.8.2",
"sass-loader": "7.1.0"
}
}