-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "ledstrips",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.12",
"axios": "^0.21.1",
"react": "^17.0.2",
"react-colorful": "^4.4.4",
"react-dom": "^17.0.2",
"ts-loader": "^8.2.0",
"typescript": "^4.2.4"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"braces": ">=2.3.1",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^5.2.4",
"node-sass": "^5.0.0",
"path": "^0.12.7",
"sass": "^1.32.12",
"style-loader": "^2.0.0",
"webpack": "^5.36.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --config webpack.dev.js --open Chrome.exe",
"build": "set NODE_ENV=development && webpack --config webpack.dev.js --color",
"buildProd": "set NODE_ENV=production && webpack --config webpack.prod.js --color",
"scss": "node-sass htmlsrc -o debugDist",
"scssProd": "node-sass htmlsrc -o data"
},
"author": "",
"license": "ISC"
}