-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.41 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "chrisme",
"version": "1.0.0",
"description": "Personal Portfolio",
"main": "index.js",
"scripts": {
"test": "jest",
"webpack": "webpack --watch --config ./webpack/webpack.config.js",
"start": "webpack --config ./webpack/webpack.config.js && nodemon server.js",
"webpack-dev": "webpack-dev-server --hot --config ./webpack/webpack.config.js --color --mode development",
"prod": "webpack-dev-server --config ./webpack/webpack.config.js --color --mode production",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"portfolio"
],
"author": "Chris Li",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.16.2",
"node-sass": "^4.7.2",
"npm": "^6.0.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-icons": "^2.2.7",
"react-reveal": "^1.2.1",
"react-router-dom": "^4.2.2",
"sinon": "^4.3.0",
"sw-precache-webpack-plugin": "^0.11.4",
"webpack": "^4.4.1",
"webpack-dev-server": "^3.1.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.3",
"@storybook/addon-links": "^3.3.3",
"@storybook/react": "^3.3.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^3.1.0",
"image-webpack-loader": "^4.0.0",
"jest": "^22.3.0",
"morgan": "^1.9.0",
"nodemon": "^1.14.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"react-test-renderer": "^16.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.0",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"webpack-cli": "^2.0.13",
"webpack-dev-middleware": "^2.0.5"
}
}