forked from Platform-OS/platformos-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.89 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
{
"name": "platform-os-documentation",
"version": "3.0.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",
"bs": "npx browser-sync start --files app/* --reload-delay 1000 --proxy",
"clean": "git clean -Xfq app/assets/*.{css,js}",
"build": "NODE_ENV=production npx webpack-cli",
"deploy": "npm run clean && npm run build && pos-cli deploy",
"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 --screenshots=screenshots tests/e2e",
"test-local": "npx testcafe \"chrome:headless\" tests/e2e"
},
"author": "platformOS",
"homepage": "https://documentation.platformos.com",
"browserslist": "cover 85%, not ie 11",
"devDependencies": {
"@babel/cli": "7.7.4",
"@babel/core": "7.7.4",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-transform-object-assign": "7.7.4",
"@babel/preset-env": "7.7.4",
"@babel/register": "7.7.4",
"autoprefixer": "9.7.2",
"babel-loader": "8.0.6",
"css-loader": "3.2.0",
"css-mqpacker": "7.0.0",
"mini-css-extract-plugin": "0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "7.0.23",
"postcss-fixes": "2.0.1",
"postcss-loader": "3.0.0",
"sass": "^1.23.7",
"sass-loader": "8.0.0",
"terser-webpack-plugin": "^2.2.1",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-require-from": "1.8.0"
},
"dependencies": {
"bootstrap": "4.4.0",
"prismjs": "1.17.1"
},
"peerDependencies": {
"testcafe": "1.7.0",
"@platform-os/testcafe-helpers": "^2"
}
}