-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "small",
"homepage": "http://lonesword.in/small/",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-react-app": "^0.5.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"jest": "^18.1.0",
"react-scripts": "0.8.5"
},
"dependencies": {
"express": "^4.14.1",
"morgan": "^1.8.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-html-parser": "^1.0.3",
"react-router": "^3.0.2",
"react-test-renderer": "^15.4.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"boo": "react-scripts test --env=jsdom",
"test": "react-scripts test --env=jsdom",
"snap": "jest -u",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js",
"env": {
"browser": true,
"mocha": true,
"node": true
},
"rules": {
"strict": 0
}
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}