forked from kevinccbsg/jest-workshop-commit-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.9 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
57
58
59
60
61
62
63
{
"name": "jest-workshop-commit-2018",
"version": "1.0.0",
"description": "## How this repo works",
"main": "webpack.config.js",
"scripts": {
"wait-on": "./node_modules/.bin/wait-on",
"start": "./node_modules/.bin/concurrently -k --success first 'npm run server' 'npm run wait-on -- http://localhost:3001/notes && npm run dev'",
"dev": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"server": "node server/app.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinccbsg/jest-workshop-commit-2018.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kevinccbsg/jest-workshop-commit-2018/issues"
},
"homepage": "https://github.com/kevinccbsg/jest-workshop-commit-2018#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"cors": "^2.8.5",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|styl|scss)$": "<rootDir>/test/styleMock.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/test/testConfig.js",
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^4.0.1",
"css-loader": "^1.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"react-test-renderer": "^16.6.3",
"style-loader": "^0.23.1",
"wait-on": "^3.2.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}