-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
99 lines (99 loc) · 3.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "blocklyprop-solo",
"version": "1.7.1",
"description": "A simplified implementation of Google's Blockly project configured to support Parallax robots and sensors.",
"main": "./index.js",
"scripts": {
"compile:sass": "sass src/scss/main.scss dist/main.css",
"dev": "rm -rdf ./dist/*; npm run build:sass; webpack --config webpack/dev.config.js --node-env development",
"dev:analyze": "npm run dev -- --env.addons=bundleanalyzer",
"build": "SOLO_DEV_MODE=false; SOLO_RELEASE=1.7.1; npm run build:sass; webpack --config webpack/prod.config.js --node-env production --stats",
"build:deploy": "rm -rdf ./dist/*; npm run build:sass; SOLO_DEV_MODE=false webpack --config webpack/prod.config.js --node-env production --stats",
"build:analyze": "npm run build -- --env.addons=bundleanalyzer",
"build:sass": "npx sass src/scss/main.scss src/scss/main.css",
"build:test": "ls ./dist/*",
"lint": "eslint \"src/modules/**/*.js\"",
"profile": "webpack --profile --json --config webpack/dev.config.js > stats.json",
"test": "test/run_all_tests.sh",
"test:dev": "npm run test:prepare && npm run test:run",
"test:run": "test/run_all_tests.sh",
"test:prepare": "npm run test:setupselenium && npm run test:startselenium",
"test:setupselenium": "selenium-standalone install --config=./test/scripts/selenium-config.js",
"test:startselenium": "selenium-standalone start --config=./test/scripts/selenium-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parallaxinc/solo.git"
},
"keywords": [],
"author": "Jim Ewald",
"license": "ISC",
"bugs": {
"url": "https://github.com/parallaxinc/solo/issues"
},
"homepage": "https://github.com/parallaxinc/solo#readme",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.7",
"ace-builds": "^1.4.8",
"blockly": "^3.20200924.4",
"bootbox": "^5.5.3",
"chartist": "^0.11.4",
"clean-webpack-plugin": "^4.0.0",
"dotenv": "^8.6.0",
"file-saver": "^2.0.5",
"jquery": "^3.6.2",
"jquery-validation": "^1.19.5",
"jszip": "^3.10.0",
"node-chartist": "^1.0.5",
"stream": "0.0.2",
"websocket-extensions": ">=0.1.4",
"workbox-background-sync": "6.5.4",
"workbox-broadcast-update": "6.5.4",
"workbox-cacheable-response": "6.5.4",
"workbox-core": "6.5.4",
"workbox-expiration": "6.5.4",
"workbox-navigation-preload": "6.5.4",
"workbox-precaching": "6.5.4",
"workbox-routing": "6.5.4",
"workbox-strategies": "6.5.4",
"workbox-window": "6.5.4"
},
"devDependencies": {
"@types/ace": "0.0.43",
"acorn": "^7.1.1",
"chai": "^4.3.6",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.2.7",
"elliptic": "^6.5.4",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"minimist": "^1.2.6",
"mocha": "^10.1.0",
"node-env-webpack-plugin": "^1.1.0",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^6.7.1",
"sass": "^1.52.3",
"sass-loader": "^12.6.0",
"selenium-standalone": "^6.24.0",
"selenium-webdriver": "^4.2.0",
"selfsigned": "^2.0.1",
"sinon": "^13.0.2",
"style-loader": "^1.3.0",
"terser-webpack-plugin": "^5.3.3",
"urijs": "^1.19.11",
"watchpack-chokidar2": "^2.0.1",
"webdriverio": "^7.20.2",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0",
"workbox-build": "6.5.4",
"workbox-webpack-plugin": "^6.5.4"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}