This repository was archived by the owner on May 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.75 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.75 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
{
"name": "component-lib-playground",
"version": "0.1.0",
"description": "a playground for experimenting with a component library",
"main": "server.js",
"scripts": {
"build": "webpack --config webpack.prod.config.js",
"dev": "webpack-dev-server --hot --inline",
"lint": "eslint src/**",
"lint:watch": "esw -w src/**",
"start": "npm run build && NODE_ENV=production node server.js",
"test": "mocha --compilers js:babel-core/register ./test/**/*.spec.js --require ignore-styles",
"storybook": "NODE_PATH=src start-storybook -p 3001 -c .storybook -s ./dist",
"build-storybook": "build-storybook"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"enzyme": "^3.9.0",
"expect": "^26.0.1",
"express": "^4.17.1",
"mocha": "^7.1.2",
"node-sass": "^4.14.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sass-loader": "^6.0.3",
"style-loader": "^0.23.1",
"webpack": "^2.3.3"
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^3.4.12",
"@storybook/react": "^3.4.12",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-runtime": "^6.26.0",
"eslint": "^6.8.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-watch": "^6.0.1",
"ignore-styles": "^5.0.1",
"react-addons-test-utils": "^15.5.1",
"webpack-dev-middleware": "^2.0.6",
"react-test-renderer": "^16.8.6",
"webpack-dev-server": "^3.1.11",
"webpack-hot-middleware": "^2.25.0"
}
}