-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 985 Bytes
/
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
{
"name": "bem-react-boilerplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bem-react-core": "^1.0.0-rc.6",
"bem-tools-core": "0.0.3",
"bem-tools-create": "^2.2.0",
"eslint": "4.4.1",
"react": "^16.2.0",
"react-app-rewired": "^1.3.5",
"react-dom": "^16.2.0",
"webpack-bem-loader": "^0.5.0",
"react-scripts": "1.0.17"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "jest",
"eject": "react-scripts eject"
},
"devDependencies": {
"babel-plugin-bem-import": "^1.4.2",
"jest-cli": "^22.0.6"
},
"jest": {
"transform": {
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/node_modules/react-scripts/config/jest/fileTransform.js",
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest"
}
}
}