-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.39 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.39 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gold-features",
"version": "0.0.1-alpha",
"description": "contains all gold features",
"author": "Gold Interactive",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Goldinteractive/gold-features.git"
},
"scripts": {
"lerna": "lerna",
"lerna:build": "lerna run build",
"lerna:updated": "lerna updated",
"lerna:publish": "yarn --frozen-lockfile && yarn lerna:build && yarn lerna publish && node scripts/remind-about-docs.js",
"lerna:exec": "lerna exec --",
"docs": "build-storybook -c .storybook -o docs",
"docs:watch": "start-storybook --port 8080",
"docs:publish": "storybook-to-ghpages",
"create:feature": "node scripts/create.js",
"test": "cypress run",
"test:interactive": "cypress open",
"format": "prettier --write \"**/*.{js,jsx,json}\" \"!**/helpers/skeleton/**/*\" \"!docs/**/*\" \"!**/lib/**/*\""
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.3.1",
"@goldinteractive/ignore-assets-webpack-plugin": "^3.0.0",
"@goldinteractive/js-base": "^1.0.0",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-knobs": "^5.2.1",
"@storybook/addon-notes": "^5.2.1",
"@storybook/addon-storysource": "^5.2.1",
"@storybook/html": "^5.2.1",
"@storybook/storybook-deployer": "^2.8.1",
"autoprefixer": "^7.2.5",
"babel-loader": "^8.0.5",
"chalk": "^2.3.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^1.0.0",
"cssnano": "^3.10.0",
"cypress": "^3.1.5",
"extract-loader": "^2.0.1",
"file-loader": "^4.2.0",
"lerna": "^3.10.7",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"postcss": "^6.0.17",
"postcss-cli": "^5.0.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.1.6",
"postcss-pxtorem": "^4.0.1",
"prettier": "^1.13.6",
"prismjs": "^1.17.1",
"raw-loader": "^3.1.0",
"replace-in-file": "^3.1.1",
"uppercamelcase": "^3.0.0",
"webpack": "^4.4",
"webpack-format-messages": "^2.0.5"
},
"browserslist": [
"> 5%",
"last 2 version"
],
"dependencies": {
"sass": "^1.53.0",
"sass-loader": "^10"
}
}