-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 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
53
54
55
56
57
58
59
{
"name": "ChrisReactSetup",
"version": "1.0.0",
"description": "Mysetup",
"main": "app.jsx",
"scripts": {
"build:dev": "webpack -d --watch",
"build:prod": "webpack -p && grunt s3",
"start": "nodemon server.js",
"test": "jest"
},
"author": "Christopher Wildenradt",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.0",
"babel-loader": "^7.1.2",
"babel-preset-airbnb": "^2.5.2",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-standard": "^2.1.6",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"express": "^4.16.2",
"jest": "^22.4.4",
"nodemon": "^1.18.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"supertest": "^3.1.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"css-loader": "^1.0.0",
"dotenv": "^6.0.0"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/test/config/style.js"
},
"resolver": null,
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js",
"testMatch": [
"**/client/components/**/*.test.js",
"**/test/*.js"
]
}
}