-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "advanced-react",
"version": "1.0.0",
"description": "pluralsight - advanced react course",
"main": "lib/server.js",
"directories": {
"lib": "lib"
},
"scripts": {
"dev": "set NODE_PATH=./lib&& nodemon --exec babel-node lib/server.js",
"webpack": "webpack -wd",
"test": "jest --watchAll",
"verify-tests": "jest --coverage",
"build-webpack": "webpack -p",
"build-node": "babel lib -d build --copy-files"
},
"babel": {
"presets": [
"react",
["env", { "targets": { "node": "current"} }]
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
},
"author": "spataruloredana",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"react-test-renderer": "^16.6.3",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"lodash.debounce": "^4.0.8",
"lodash.pickby": "^4.6.0",
"prop-types": "^15.6.2",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"webpack": "^4.25.1"
}
}