-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 KB
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
{
"name": "personal-utilities",
"version": "1.0.0",
"description": "It's an app to help me in the process of learning new things daily. New things can be english grammar and vocabulary, general knowledge or whatever I want to learn, by connections to different APIs\"",
"main": "index.js",
"author": "Linda Gutierrez Montoya",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "webpack -p"
},
"jest": {
"setupFiles": [
"./test/testSetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
}
},
"dependencies": {
"identity-obj-proxy": "^3.0.0",
"babel-register": "^6.26.0",
"html-webpack-plugin": "^2.30.1",
"path": "^0.12.7",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dev-server": "^2.11.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"plop": "^1.9.1",
"react-addons-test-utils": "^15.6.2",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"jest": "^22.1.4",
"react-test-renderer": "^16.2.0"
}
}