forked from nicmosc/brick-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.28 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.28 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
{
"name": "codeblocks",
"version": "0.1.0",
"description": "React based CodeBlocks builder",
"main": "index.js",
"scripts": {
"clean": "rimraf docs/",
"start": "node --openssl-legacy-provider server.js",
"start:legacy": "node --openssl-legacy-provider ./node_modules/.bin/webpack-dev-server --progress --config webpack.dev.config.js",
"build": "npm run clean && webpack --progress --config webpack.config.js -p",
"build:docker": "npm run clean && node --openssl-legacy-provider ./node_modules/webpack/bin/webpack.js --progress --config webpack.config.js -p",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/nicmosc/codeblocks"
},
"keywords": [],
"author": "Nicolaos Moscholios <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^7.0.0-beta.3",
"babel-loader": "^7.0.0",
"babel-preset-env": "^7.0.0-beta.3",
"babel-preset-react": "^7.0.0-beta.3",
"babel-preset-stage-0": "^7.0.0-beta.3",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"extract-loader": "^0.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^0.11.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^3.2.0",
"if-only": "^2.0.0",
"less": "^3.9.0",
"less-loader": "^4.0.4",
"node-dev": "^3.1.3",
"postcss-loader": "^2.0.5",
"posthtml-loader": "^0.11.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-hot-loader": "next",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"style-loader": "^0.18.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"autobind-decorator": "^2.1.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^2.2.1",
"dotenv": "^17.2.3",
"driver.js": "^1.4.0",
"express": "^5.2.1",
"file-saver": "^1.3.3",
"global": "^4.3.2",
"jquery": "^3.2.1",
"lodash": "^4.17.5",
"normalize.css": "^7.0.0",
"openai": "^6.9.1",
"pubsub-js": "^1.5.7",
"react-color": "^2.13.8",
"rimraf": "^2.6.1",
"uuid": "^3.1.0",
"webpack-dev-middleware": "^3.7.3",
"webpack-hot-middleware": "^2.25.4"
}
}