forked from Platform-OS/platformos-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.22 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
{
"name": "platform-os-documentation",
"version": "2.1.0",
"description": "Documentation for platformOS",
"private": true,
"repository": "mdyd-dev/nearme-documentation",
"engines": {
"node": ">=8"
},
"scripts": {
"postinstall": "node ./scripts/check-node-version.js",
"start": "npx webpack-cli -w",
"clean": "git clean -Xfq $npm_package_config_build_dir/*.{css,js}",
"autogenerate": "time ./scripts/generate_all.sh",
"build": "NODE_ENV=production npx webpack-cli",
"deploy": "npm run clean && npm run build && marketplace-kit deploy -f",
"test": "docker run -v $PWD/tests/e2e:/tests -e \"MP_URL=$MP_URL\" -it platformos/testcafe 'testcafe \"chromium:headless --no-sandbox\" /tests'",
"test-ci": "testcafe 'chromium:headless --no-sandbox' --screenshots-on-fails tests/e2e",
"test-local": "npx testcafe \"chrome:headless\" tests/e2e"
},
"config": {
"build_dir": "marketplace_builder/assets"
},
"author": "platformOS",
"homepage": "https://documentation.platform-os.com",
"browserslist": [
"last 2 major versions",
"ie >= 11",
"not dead"
],
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/preset-env": "7.4.3",
"@babel/register": "7.4.0",
"autoprefixer": "9.5.0",
"babel-loader": "8.0.5",
"css-loader": "2.1.1",
"css-mqpacker": "7.0.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.11.0",
"postcss": "7.0.14",
"postcss-calc": "7.0.1",
"postcss-csso": "3.0.0",
"postcss-fixes": "2.0.1",
"postcss-focus": "4.0.0",
"postcss-font-display": "^0.1.2",
"postcss-loader": "3.0.0",
"postcss-pseudoelements": "5.0.0",
"sass-loader": "7.1.0",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-require-from": "1.7.0"
},
"dependencies": {
"@sentry/browser": "^4",
"anchor-js": "4.2.0",
"bootstrap": "4.3.1",
"ejs": "2.6.1",
"metismenujs": "1.0.3",
"prismjs": "1.16.0",
"turbolinks": "5.2.0"
},
"peerDependencies": {
"testcafe": "1.1.0",
"@platform-os/testcafe-helpers": "^2"
}
}