-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "svg-editor",
"version": "1.0.0",
"description": "SVG Editor",
"author": "Turner",
"license": "ISC",
"private": true,
"scripts": {
"test": "NODE_ENV=test mocha --reporter=spec --require @babel/register --require test/_setup.js test/**/*-test.js",
"watch": "webpack -d --config ./webpack/webpack.config.js --watch --display-error-details",
"start": "webpack-dev-server --config ./webpack/webpack.dev.config.js --open --display-error-details",
"build": "webpack -p --config ./webpack/webpack.config.js --display-error-details"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"hybrids": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/register": "^7.4.0",
"@tbranyen/jsdom": "^13.0.0",
"autoprefixer": "^9.5.0",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.1",
"chai": "^4.2.0",
"clean-webpack-plugin": "^2.0.1",
"eslint": "^5.15.3",
"eslint-loader": "^2.1.2",
"feather-icons": "^4.19.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"immutable": "^4.0.0-rc.12",
"immutable-js": "^0.3.1-6",
"jsdom": "^14.0.0",
"mocha": "^6.0.2",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"null-loader": "^0.1.1",
"nyc": "^13.3.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^2.0.0",
"sass-loader": "^7.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-node-externals": "^1.7.2"
}
}