-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.72 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
{
"name": "react-empty-project",
"version": "1.0.0",
"description": "Empty react app project",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --x --recursive --watch",
"watch-test": "jest --json --outputFile=.jest-test-results.json --watchAll --coverage",
"test": "jest --json --outputFile=.jest-test-results.json || true"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "4.0.0-alpha.21",
"@storybook/addon-jest": "^4.0.0-alpha.21",
"@storybook/addon-links": "4.0.0-alpha.21",
"@storybook/addons": "4.0.0-alpha.21",
"@storybook/react": "4.0.0-alpha.21",
"acorn": "^6.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.4.0",
"eslint": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "23.5.0",
"node-sass-chokidar": "^1.3.3",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.5.2"
}
}